//	Custom jQuery functions

$(document).ready(
	function() {

		$('#small_box_area div:nth-child(3n+1)').css({'clear': 'left'});

		$('#show_login').not('.show').toggle(
			function(){
				$('#login').slideDown(250, function(){
					$(this).find('#email').focus();
				});
			}, function(){
				$('#login').slideUp(250);
			}
		);
	}
);


//Custom JavaScript functions
function SelectAll(id)
{
    document.getElementById(id).focus();
    document.getElementById(id).select();
}

var min=11;
var max=18;
function increaseFontSize() {
   var p = document.getElementsByTagName('p');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace("px",""));
      } else {
         var s = 12;
      }
      if(s!=max) {
         s += 1;
      }
      p[i].style.fontSize = s+"px"
   }
}
function decreaseFontSize() {
   var p = document.getElementsByTagName('p');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace("px",""));
      } else {
         var s = 12;
      }
      if(s!=min) {
         s -= 1;
      }
      p[i].style.fontSize = s+"px"
   }   
}

