
$(document).ready(function()
	{
		
		
		$(".prodThumb").toggle(function()
			{
				$(this).siblings(".prodImage:hidden").show("slow");
			},	function() 
			{ 
				$(this).siblings(".prodImage:visible").hide("slow");
			}
		);
		
		

	}
);

