$(function() {

	$("#product-list .item .image a").tooltip({
	    track: true,
	    delay: 0,
	    showURL: false,
	    bodyHandler: function() {
	        return $("<img/>").attr("src", this.rel);
	    },
	    top: 10,
	    left: 15
	});

});

