// JavaScript Document

jQuery(document).ready(function(){
						   
	var SiteWidth = jQuery(document).width();
	var MidWidth = (SiteWidth / 2) - 225;
	
	jQuery("#promo").hide();
	
	jQuery("#promo").css({'position' : 'relative', 'left' : MidWidth}).fadeIn("slow");
	
	jQuery("#promo_close").click(function(){
		jQuery("#promo").fadeOut("normal");
	});

	jQuery("#menu_toggle").hover(
		function(){
			jQuery(this).stop().animate({height : 340}, 300);
		},
		function(){
			jQuery(this).stop().animate({height : 141}, 300);
		}
	);
	
	jQuery("#menu_toggle ul li").each(function(i){
		
		jQuery(this).hover(
			function()
			{ 
				jQuery(this).stop().animate({ fontSize : '18px' }, 300); 
			},
			function()
			{ 
				jQuery(this).stop().animate({ fontSize : '12px' }, 300);
			}
		);
						  
		}
	);

});
