$(document).ready(function() {
		
	//// PRODUCT IMAGE SWITCH //// 
	$(".productImage ul li a").click(function() {
		
		var image_PK = $(this).attr("rel");
		$(".product_image").hide();
    	$(".product_image#" + image_PK).show();
	
	});
});
