$(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
	$("#nav li").mouseover(function(){
		$(this).stop().animate({marginTop: "-7px",
							   opacity:".5"

							   
							   },{queue:false, duration:300, easing: 'easeOutCirc'})
	});
	
	
	
	
	//When mouse is removed
	$("#nav li").mouseout(function(){
		$(this).stop().animate({marginTop: "0px",
							   opacity:"1"
							   
							   },{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
});