// JavaScript Document	

setTimeout( function(){ $('body').show();}, 1000);
	
$(function() {
	$("a.lightbox").fancybox();
});
/*$(function() {
  $("img").lazyload({placeholder : "img/grey.gif"});
});*/

function emBreve(evt){
	evt.preventDefault();
	
	$.fancybox('<p id="msg-fancybox">Em breve – um empreendimento Queiroz Galvão</p>', {'autoDimensions': false, 'width': 370, 'height': 35, 'showCloseButton': false});
	setTimeout( function(){ $.fancybox.close(); }, 1500);
}

function alerta(msg){
	
	setTimeout( function(){
	$.fancybox('<p id="msg-fancybox">'+msg+'</p>', {'autoDimensions': false, 'width': 370, 'height': 65, 'showCloseButton': false});
	setTimeout( function(){ $.fancybox.close(); }, 1500);
	}, 1000);
}

