$(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
	$("ul#topnav").mouseover(function(){
		$(this).stop().animate({height:'150px'},{queue:false, duration:600, easing: 'easeOutSine'})
	});
	
	//When mouse is removed
	$("ul#topnav").mouseout(function(){
		$(this).stop().animate({height:'25px'},{queue:false, duration:1200, easing: 'easeOutSine'})
	});
	
});



$(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
	$("ul#topnav li.no").mouseover(function(){
		$(this).stop().animate({height:'0px'},{queue:false, duration:0, easing: 'easeOutSine'})
	});
	
	//When mouse is removed
	$("ul#topnav li.no").mouseout(function(){
		$(this).stop().animate({height:'25px'},{queue:false, duration:0, easing: 'easeOutSine'})
	});
	
});
