
jQuery(document).ready(function() {	

	jQuery('a[name=modal]').click(function(e) {
		e.preventDefault();
		
		var id = jQuery(this).attr('href');
	
		var maskHeight = jQuery(document).height();
		var maskWidth = jQuery(window).width();
	
		jQuery('#mask').css({'width':maskWidth,'height':maskHeight});

		jQuery('#mask').fadeIn(1000);	
		jQuery('#mask').fadeTo("slow",0.8);	
	
		//Get the window height and width
		var winH = jQuery(window).height();
		var winW = jQuery(window).width();
              
		jQuery(id).css('top',  winH/2-jQuery(id).height()/2);
		jQuery(id).css('left', winW/2-jQuery(id).width()/2);
	
		jQuery(id).fadeIn(2000); 
	
	});
	
	jQuery('#close_mapa_fmaxx').click(function (e) {
		e.preventDefault();
		
		jQuery('#mapa_fmaxx_localizacao').hide();
		jQuery('#mask').hide();
	});		
	
	jQuery('#mask').click(function () {
		jQuery(this).hide();
		jQuery('#mapa_fmaxx_localizacao').hide();
	});			
	
});

