var min=8;
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"
   }   
}

$(document).ready(function() {
			$('#nav ul li').hover(
					function () {
						if ($(this).text() == 'home'){
						  $('.first').css({'background':'url(/images/nav_ul_left_hover.png) bottom left no-repeat' });
						}
						if ($(this).text() == 'partner'){
						  $('.last').css({'background':'url(/images/nav_ul_right_hover.png) bottom right no-repeat' });
						}
							}, 
					function () {
						  if ($(this).text() == 'home' && $('#active').text()!= 'home'){
						  $('.first').css({'background':'url(/images/nav_ul_left.png) bottom left no-repeat' });
						  if ($(this).text() == 'partner' && $('#active').text()!= 'partner'){
						  $('.last').css({'background':'url(/images/nav_ul_right.png) bottom right no-repeat' });
						}
						}
						}
					);
});
