jQuery(function() {

 // carregando
  var loader = jQuery('<div id="loader"><img src="img/load.gif" alt="carregando..." /></div>')
  	.css({position: "fixed", top: "50%", left: "50%", 'z-index': 20})
  	.appendTo("body")
  	.hide();

  $(document).ajaxStart(function() {
    	loader.show();
    }).ajaxStop(function() {
    	loader.hide();
    }).ajaxError(function(a, b, e) {
    	throw e;
    });

    // galeria de Imagens
    atual = 0;
    total = 0;

    $(".seta_d").live('click',function(){
       atual = atual +3;
       if (atual > total -1) { atual = total -1; };
       $("#e_fotos").animate( { left: atual * -210 + "px" }, 800, 'easeOutExpo');
    });

    $(".seta_e").live('click',function(){
       atual = atual -3;
       if (atual < 0) { atual = 0; };
       $("#e_fotos").animate( { left: atual * -210 + "px" }, 800, 'easeOutExpo');
    });

});

 function aviso(msg) {
  $('#aviso').html(msg);
  $('#aviso').slideDown('fast');
  setTimeout(function(){ $('#aviso').slideUp('fast') },8000);
 };


$(function(){

  $('form').jqTransform({imgPath:'js/form/'});

  w = screen.availWidth;
  h = screen.availHeight;

  $('#e_fotos a').lightBox({fixedNavigation:true});



  $("#aviso").live('click',function(){
    $("#aviso").fadeOut();
  });

  $("#mapa").live('click',function(){
    $("#mapa").fadeOut();
    $(".escurecer").fadeOut();
  });

  $("#bt_mapa").live('click',function(){
    $(".escurecer").css("visibility", "visible");
    $("#mapa").fadeIn();
    $(".escurecer").fadeIn();
  });

});
