$(document).ready(
	function()
	{
		$("li.MenuItemLi").hover
			(
				function()
				{
					$(this).find("span.MenuItemLeft").addClass ("MenuItemLeftHover");
					$(this).find("span.MenuItemCenter").addClass ("MenuItemCenterHover");
					$(this).find("span.MenuItemRight").addClass ("MenuItemRightHover");
				},
				function()
				{
					$(this).find("span.MenuItemLeft").removeClass ("MenuItemLeftHover");
					$(this).find("span.MenuItemCenter").removeClass ("MenuItemCenterHover");
					$(this).find("span.MenuItemRight").removeClass ("MenuItemRightHover");
				}
			);
		
		$('div.ProductAccessoryContainer').hover(
			function()
			{
				/*
				$('div.ProductAccessoryContainer').find('img').stop();
				$('div.ProductAccessoryContainer').find('img').hide();
				$('div.ProductAccessoryContainer').find('img').css('height','auto');
				*/
				//$(this).find('img').slideDown('slow');
				$(this).find('img').show();
			},
			function()
			{
				var imagetohide = $(this).find('img');
				//$(this).find('img').slideUp('slow');
				setTimeout(function()
				{
					$(imagetohide).hide();
				},500);
			}
		);
		
	}
);


