// JavaScript Document
	$(document).ready(function() {
		
		$('#nav a')
		.css( {backgroundPosition: "0px 0px"} )
		.mouseover(function(){
			$(this).stop()
				.animate(
					{backgroundPosition:"(17px 0px)"}, 
					{duration:200})
			})
		.mouseout(function(){
			$(this).stop()
				.animate(
					{backgroundPosition:"(0px 0px)"}, 
					{duration:200})
			})				
	});
