$(document).ready(function() {	
						   
	$('area[lang=pt_br]').click(function(e) {
		e.preventDefault();
		
		var id = $(this).attr('href');
		var imgServico = $('.imgServico').offset().top
		
		$('#Pagina').html('');
		$('#Pagina').html('&nbsp;&nbsp;&nbsp;&nbsp;carregando... Por favor, aguarde.');
		
		var posicao_top = $(this).offset().top
		
		var maskHeight = $(document).height();
		var maskWidth = $(window).width();
	
		$('#mask').css({'width':maskWidth,'height':maskHeight});

		$('#mask').fadeIn(1000);	
		$('#mask').fadeTo("slow",0.6);	
	
		//Get the window height and width
		var winH = $(window).height();
		var winW = $(window).width();
              
		$(id).css('top',  (imgServico));
		$(id).css('left', winW/2-$(id).width()/2);
	
		$(id).fadeIn(2000); 
		
		//Personalizar o Scroll
		$('#PopUpConteudo').jScrollPane({scrollbarWidth: 5});
		
	});
	
	$('.window .close').click(function (e) {
		e.preventDefault();
		
		$('#mask').hide();
		$('.window').hide();
	});		
	
	$('#mask').click(function () {
		$(this).hide();
		$('.window').hide();
	});
	
});
function LerConteudo(id) {
	$("#Pagina").load("/inc/funcPopUp.php?conteudo="+id+"");
}
