$(document).ready(function(){
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	//Remove outline from links
	$(".menu ul li a").click(function(){
		$(this).blur();
	});
        //$(".menu li").stop().animate({height:'53px'},{queue:false, duration:600, easing: 'easeOutBounce'})
               
        $("ul.submenuul").hide();	

	//When mouse rolls over
	$(".menu li").mouseover(function(){
                
                $(this).children("div").children("ul").show();	
		$(this).stop().animate({height:'90px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$(".menu li").mouseout(function(){
		$(this).stop().animate({height:'53px'},{queue:false, duration:600, easing: 'easeOutBounce'})
                $("ul.submenuul").hide();	
	});
	
});

