
$(function() {

$('.img_tooltip').tooltip({
	track: true,					
	delay: 0,
	fade: 250, 
	showURL: false,
	bodyHandler: function() {
		return $("<img/>").attr("src", this.rel);
	}
});

});



function start() 		{
	
jQuery(function(){jQuery('.tooltip').tooltip({track: true,delay: 0, fade: 250, showURL: false,bodyHandler: function() {	return this.rel;}});
jQuery('.img_tooltip').tooltip({delay: 0, fade: 250, track: true,showURL: false,bodyHandler: function() {	return jQuery("<img/>").attr("src", this.rel);}});});


}
