/* Modal window - Mercedes-Benz
Purple Cow - www.purplecow.pt
*/

$modal_width = $(document).width();
$modal_height = $(document).height();

$(function() {
		   $("div#modal_bg").css({'width' : $modal_width + 'px', 'height' : $modal_height + 'px'});
		   });

// Abrir a janela
function layer_open(){
	$("div#modal_bg").show();
	$("div#modal_layer").show();
	}

// Fechar a janela
function layer_close(){
	$("div#modal_bg").hide();
	$("div#modal_layer").hide();
	$("div#flash_popup").hide();
	}
