$(document).ready(function(){	 

	$(".product1 img").each(function(){
			
	});	
	
	$(".productListing-data-1").mouseover(function(){
	  $(this).addClass("highlight");
	  $(this).css("color:#ffffff");
	}).mouseout(function(){
	  $(this).removeClass("highlight");
	});
		
});


function slideshow(){
	    
	a=this.id;
	code="<img src='timthumb.php?src=images/" + a + "&h=500&w=500'>";	
	$(".product1").html(code);
	
}

$(window).load( function() {		 
		 
	
	$("#multiple-views div.productListing-data-1").click(slideshow);
	//$("div.item").click(slideshow);
	
	$("#multiple-views div.productListing-data-1").mouseover(function(){
	  $(this).addClass("highlight");
	}).mouseout(function(){
	  $(this).removeClass("highlight");
	});
		
});

