/*
 * jQuery Fade Plugin
 * Examples and documentation at: http://snook.ca/archives/javascript/jquery-bg-image-animations/
 * Copyright (c) 2008-09-22 Jonathan Snook
 */
jQuery(function(){
	jQuery('#nav a')
		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			jQuery(this).stop().animate(
			{backgroundPosition:"(0 -40px)"},
			{duration:350})
		})
		.mouseout(function(){
			jQuery(this).stop().animate(
			{backgroundPosition:"(0 0)"},
			{duration:350})
	})
});
