$(document).ready(function(){
	//tolltips
	//pequenos
	$('.smallToptip').tooltip({showURL: false });

	//imagem
	$('#imagemFactura').tooltip({ 
		delay: 0, 
		showURL: false, 
		bodyHandler: function() { 
				return $("<img src='http://"+window.top.location.host+"/images/factura_agua.jpg' heigth='300' width='300'/>"); 
	
		} 
	});
	$('#imagemContador').tooltip({ 
		delay: 0, 
		showURL: false, 
		bodyHandler: function() { 
				return $("<img src='http://"+window.top.location.host+"/images/contador_agua.jpg' width='300'/>"); 
	
		} 
	});

	//textos grandes
	$('.tollTipBig').tooltip({
		track: true,
		delay: 0,
		showURL: false,
		showBody: " # ",
		extraClass: "tollTipBigBox",
		fixPNG: true,
		left: -120
		
	});
});
