$(document).ready(function(){
	$('.product-list li').hover(function(){
		$(this).css({backgroundColor:"#DCE4ED"});
		var imgsrc = $(this).attr('imgsrc');
		if(typeof(imgsrc) == 'undefined')
			var imgsrc = '../images/empty.gif';
		$('#p-p-img').attr({src:imgsrc});
	},function(){
		$(this).css({backgroundColor:"#FFFFFF"});
	});
});
