$(document).ready(function(){
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	//Remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
	
	//When mouse rolls over
	$("li#supports").mouseover(function(){
		MM_swapImage('supports','','images/menu/menu_supports_on.png',1);
		$(this).stop().animate({height:'150px'},{queue:false, duration:600})//, easing: 'easeOutBounce'
	});
	
	//When mouse is removed
	$("li#supports").mouseout(function(){
		$(this).stop().animate({height:'41px'},{queue:false, duration:200})
		MM_swapImgRestore();
		//MM_swapImage('supports','','images/menu/menu_supports_off.png',1);
	});
	 
	/*//When mouse rolls over
	$("li").mouseover(function(){
		$(this).stop().animate({height:'150px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$("li").mouseout(function(){
		$(this).stop().animate({height:'41px'},{queue:false, duration:200})
	});*/
	
	
});