// JavaScript Document
 $(document).ready(function(){
  $("ul.menugrow li").hover(function() {
	
	$(this).find('a').addClass("hover").stop() /* Add class of "hover", then stop animation queue buildup*/
		.animate({
			fontSize: '24px'
		}, 200); /* this value of "200" is the speed of how fast/slow this hover animates */

	} , function() {
	$(this).find('a').removeClass("hover").stop()  /* Remove the "hover" class , then stop animation queue buildup*/
		.animate({
			fontSize: '16px'
		}, 400);
});

});
$(window).load(function(){
	$("#content").show("fold", 1000);
});

