$(document).ready(function() {
	$('#logo a img').mouseover(function() {
		$('#luz-logo').fadeTo('fast', 1);
	});

	$('#logo a img').mouseout(function() {
		$('#luz-logo').fadeTo('fast', 0);
	});

	$("#binarty img[title]").tooltip({ 
			position: "top center",
			offset: [22,-52],

	    // use the built-in fadeIn/fadeOut effect 
	    effect: "fade", 
 
	    // custom opacity setting 
	    opacity: 0.7, 
 
	    // use this single tooltip element 
	    tip: '.info-binarty' 
	});
	
	$(function() { 
	    $("#mapa img[rel]").overlay({
				effect: 'apple'
			}); 
	});
});