$(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.nav").not("li.active").mouseover(function(){
		$(this).stop().animate({top:'1px'},{queue:false, duration:500})
	});
	
	//When mouse is removed
	$("li.nav").not("li.active").mouseout(function(){
		$(this).stop().animate({top:'15px'},{queue:false, duration:500})
	});
	
	
	
	


	
	
});


