
$(document).ready(function() {
	
$("img").each(function(){   
		var el = $(this);   
		el.tooltip({      
			position: 'top center',
			offset: [0, 0],
			tip: '#tt_'+el.attr('id')   
		});   
	});
	
});

