﻿vLayerNome = "";
function popupLayerAbre(layerNome) {
    vLayerNome = layerNome;
	var maskHeight = $(document).height();
	var maskWidth = $(window).width();
	$('.popup_layer_bg').css({ 'width': maskWidth, 'height': maskHeight });
	$('.popup_layer_bg').fadeIn(1000);
	$('.popup_layer_bg').fadeTo("slow", 0.8);
	$(layerNome).fadeIn(2000);
}
function popupLayerAbre2(layerNome, estado) {
    vLayerNome = '#'+layerNome;
	var maskHeight = $(document).height();
	var maskWidth = $(window).width();
	$('.popup_layer_bg').css({ 'width': maskWidth, 'height': maskHeight });
	$('.popup_layer_bg').fadeIn(1000);
	$('.popup_layer_bg').fadeTo("slow", 0.8);
	$(vLayerNome).fadeIn(2000);
	$('.estados').hide();
	$('#c_' + estado).fadeIn();
}


$(document).ready(function() {	
   $('.popup_layer_bg').click(function() {
	    $(this).hide();
	    $(vLayerNome).hide();
		});
	}
);
