$(document).ready(function(){
	
	//When mouse rolls over
	$("#header ul li").mouseover(function() {		
		$('> ul',this).stop().animate({height:'300px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$("#header ul li").mouseout(function() {
		$('> ul',this).stop().animate({height:'0px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
});
