$(function() {	
	$('.tooltip').tooltip({
		track: false,
		delay: 0,
		showURL: false,
		fixPNG: true,
		left: 20,
		top: -120,
		bodyHandler: function() {
			return $("<img/>").attr("src", this.src);
		}
	});
	$('.tooltipDetail').tooltip({
		track: false,
		delay: 0,
		showURL: false,
		fixPNG: true,
		extraClass: "tooltipLarge",
		bodyHandler: function() {
			return $("<img/>").attr("src", this.src);
		}
	});
});