
$(document).ready(function(){
	$("#product-images ul li a").hover(function () {
		var check = this.title;
		$("#product-images ul li a").removeClass("current");
		$(this).addClass("current");
		$("#product-images").css({'background-image' : 'url(../images/list_bg/'+this.title+'.jpg)'});
	});
});
