// JavaScript Document
$(document).ready(function()
{
		$("#pie")
		.css( {backgroundPosition: "0 100"} )
		.hover
		(
			function ()
			{
				$(this).stop().animate
				(
					{backgroundPosition:"(0 -890px)", color: "#000000"}, 
					{duration:300}
				)
			},
			function ()
			{
				$(this).stop().delay(400).animate
				(
					{backgroundPosition:"(0 100)", color: "#999999"}, 
					{duration:400}
				)
			}
		);
});
