$(document).ready(function() {

// Button background animations

$('#nav a')
	.css( {backgroundPosition: "0 100%"} )
	.mouseover(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0 50%)"}, 
			{duration:200})
		})
	.mouseout(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0 100%)"}, 
			{duration:200})
});

});