$(document).ready(function(){
	
	$("a.swapimg").mouseover(function(){
		var imgSwap = $(this).attr("rel");
		var idSwap = $(this).attr("rev");
		//alert(idSwap);
		//$("#msgerror").html(idSwap);
		//$("img").attr({ src: "test.jpg", alt: "Test Image" });
		$("#" + idSwap).attr( { src: imgSwap});
		//alert($(idSwap).attr("src"));
	});
	
	//<a class="swapimg" rev="imgmenu2" rel="media/files/39_t_vegax3_10.jpg" title="Vega X3" href="ProductDetails.asp?dp=20_Vega,X3">Vega X3</a>
});

