$(function(){
	//Menu Hover
	$("#submenu ul li a").find("img:first").each(function(){
		var _loader = new Image();
		$(_loader).attr("src", $(this).attr("src").replace(".jpg", "_on.jpg"));
	});
	$("#submenu ul li a").not('.active').find("img:first").hover(
		function(){$(this).attr("src", $(this).attr("src").replace(".jpg", "_on.jpg"));},
		function(){$(this).attr("src", $(this).attr("src").replace("_on", ""));}
	);
	$("#submenu ul li a.active").find("img:first").each(function(){
		$(this).attr("src", $(this).attr("src").replace(".jpg", "_on.jpg"));
	});
	
	$("#topMenu ul li a").find("img:first").each(function(){
		var _loader = new Image();
		$(_loader).attr("src", $(this).attr("src").replace(".gif", "_on.gif"));
	});
	$("#topMenu ul li a").find("img:first").hover(
		function(){$(this).attr("src", $(this).attr("src").replace(".gif", "_on.gif"));},
		function(){$(this).attr("src", $(this).attr("src").replace("_on", ""));}
	);
	$("#prodDetailsImages div table tr td a").click(function(){
		$("#prodDetailsImages img:first").attr('src', $(this).attr('href'));
		return false;		
	});
});