$(window).load(function()
{
	if($("#products")[0]){
		$("#products div.img").each(function(){
			var id = $(this).attr('id').split('_').pop();
			var hover = $("#hover_"+id);
			var html = hover.html();
			if( html ){
				$(this).tooltip({ 
//					delay: 0, 
					bodyHandler: function() { 
						return html; 
					}, 
					showURL: false 
				});
			}
		});
	}
});
