$(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 ul li.menu-item a").mouseover(function(){
		$(this).stop().animate({margin:'10px 0px 0px'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$("#nav ul li.menu-item a").mouseout(function(){
		$(this).stop().animate({margin:'0px 0px 0px'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});
	
	//Current Page
	$("#nav ul li.current-menu-item a").mouseover(function(){
		$(this).stop().animate({margin:'10px 0px 0px'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});
	$("#nav ul li.current-menu-item a").mouseout(function(){
		$(this).stop().animate({margin:'10px 0px 0px'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});
});
