jQuery(
	function()
	{
		jQuery('#TopNav>ul>li').hover(
			// Over state
			function()
			{
				var self = this;
				if ( jQuery(this).hasClass('current') )
				{
					jQuery(this).find('a').eq(0).css('background-position','right -3px');
				} else {
					jQuery(this).find('a').eq(0).css('background-position','right -1px');
				}
				jQuery(this).addClass('hover');
				jQuery(this).find('a').eq(0).css('background-image','url(images/topnav-glow4.gif?random='+Math.round(Math.random()*1000)+')');
				setTimeout(
					function()
					{ 
						if ( jQuery(self).hasClass('current') )
						{
							jQuery(self).find('a').eq(0).css('background-position','right -28px');
						} else {
							jQuery(self).find('a').eq(0).css('background-position','right -26px');
						}
					}, 500
				);
			},
			// Out state
			function()
			{
				jQuery(this).removeClass('hover');
				jQuery(this).find('a').eq(0).css('background-image', 'none');
			}
		);
	}
);
