﻿var MSG_EMAIL_INV="Por favor, digite um email válido (voce@exemplo.com).";var MSG_EMAIL_SEM="Por favor, informe o seu e-mail.";function carregar(event){var x=parseInt($(this).attr("id"));var who=$(this);who.children(".pfoto").addClass("carregandoi");var img=new Image(299,450);$(img).data("quem",who).load(function(event){$(this).hide();var x=$(this).data("quem");x.children(".pfoto").removeClass("carregandoi");x.children(".pfoto").append(this);$(this).fadeIn(400,function(){var x=$(this).data("quem");x.children(".pfoto").css("background-color","transparent")})}).error(function(){}).attr("src",fotos[x])}function ehVisivel(event){jqueryElement=$(".foto.toload");if(jqueryElement.length==0){$(window).unbind("scroll",ehVisivel)}var tamView=$(window).width();var scrollAtual=$(window).scrollLeft();var area=scrollAtual+tamView;jqueryElement.each(function(){var pos=$(this).offset().left;if(pos<=area){$(this).trigger("carrega");$(this).removeClass("toload")}})}function voltaInicio(event){$(window).scrollTo(0,600,{axis:"x"})}function pratras(event){event.stopPropagation();$(window).scrollTo("-=333px",800,{axis:"x"})}function prafrente(event){event.stopPropagation();$(window).scrollTo("+=333px",800,{axis:"x"})}function arruma(){altTe=$(window).height();altLo=33;dist=20;altGa=455;total=508;posYlo=(altTe/2)-(total/2);posYga=posYlo+dist+altLo;$("#logo").css("top",posYlo+"px");$("#galeria").css("top",posYga+"px");$("#menu").css("top",posYga+"px")}function centraliza(offset,width){viewport=($(window).width()/2)-(width/2);posx=(offset.left-viewport);if(posx<0){posx=0}posx+="px";$(window).scrollTo(posx,800,{axis:"x"})}function cent(oq){altTe=$(window).height();largTe=$(window).width();larg=oq.width();alt=oq.height();posY=(altTe/2)-(alt/2);posX=(largTe/2)-(larg/2);oq.css("left",posX+"px").css("top",posY+"px")}function fotoClick(event){if(parseFloat($(this).children(".escondido").css("left"))>200){$(this).unbind("click");$(this).animate({width:"-=230px"},{duration:600,complete:function(){$(this).bind("click",fotoClick)}});$(this).children(".escondido").animate({left:"-=230px"},600);$("#galeria").animate({width:"-=230px"},600)}else{$(this).unbind("click");$("#galeria").animate({width:"+=230px"},600);$(this).children(".escondido").animate({left:"+=230px"},600);$(this).animate({width:"+=230px"},{duration:600,complete:function(){off=$(this).offset();w=$(this).width();centraliza(off,w);$(this).bind("click",fotoClick)}})}}function navClick(event){if($(this).hasClass("aberto")){$(this).children("ul").slideUp("hide");$(".aberto").removeClass("aberto");return}$(".aberto").children("ul").slideUp("hide");$(".aberto").removeClass("aberto");$(this).children("ul").slideDown("show",function(){$(this).find(".first").focus()});$(this).addClass("aberto")}function erro(quem,msg){quem.attr("title",msg);quem.focus();quem.tipsy("show");quem.blur(function(){quem.tipsy("hide")})}function procurar(event){event.preventDefault();max=($(".foto").length);var n=$("#search").val();if((n!=parseInt(n)||(n<1||n>max))){erro($("#search"),"Por favor, digite um número de foto entre 1 e "+max+".");return}var quem="#o_"+n;var x=$(quem).parents(".foto");off=x.offset();w=x.width();if(parseFloat(x.children(".escondido").css("left"))>200){centraliza(off,w)}else{x.unbind("click");$("#galeria").animate({width:"+=230px"},600);x.children(".escondido").animate({left:"+=230px"},600);x.animate({width:"+=230px"},{duration:600,complete:function(){centraliza(off,w);x.bind("click",fotoClick)}})}}function mostraFundo(){$("#fundo").fadeTo(800,1);$("#msg").addClass("duz");cent($("#msg"))}function fechaMsg(event){event.preventDefault();$("#fundo").fadeTo(800,0,function(){$("#msg").empty().html('<img id="msg_loading" src="images/site/loading_branco.gif" width="90" height="90" />');$("#fundo").css("display","none")})}function mostraMsg(msg){$("#msg").fadeTo(450,0,function(){$("#msg").html(msg);$("#msg").removeClass("duz");$("#voltar").bind("click",fechaMsg);$("#msg").fadeTo(450,1,function(){cent($("#result"))})})}function cadastrar(event){event.preventDefault();if($("#email_news").val()==""){erro($("#email_news"),"Por favor, digite o email que você deseja cadastrar.");return}if(!testEmail($("#email_news"))){return}mostraFundo();$.ajax({cache:false,url:"recebe_news.php",data:"email="+$("#email_news").val(),success:function(data,textStatus,XMLHttpRequest){mostraMsg(data)}})}function testEmail(quem){var email=quem.val();var filter=/^([a-zA-Z0-9_.-])+@(([a-zA-Z0-9-])+.)+([a-zA-Z0-9]{2,4})+$/;if(!filter.test(email)){erro(quem,MSG_EMAIL_INV);return false}return true}function enviar(event){event.preventDefault();if($("#nome_contato").val()==""){erro($("#nome_contato"),"Por favor, digite seu nome.");return}if($("#email_contato").val()==""){erro($("#email_contato"),MSG_EMAIL_SEM);return}if(!testEmail($("#email_contato"))){return}if($("#mensagem_contato").val()==""){erro($("#mensagem_contato"),"Por favor, digite uma mensagem.");return}mostraFundo();$.ajax({cache:false,url:"recebe_contato.php",data:"email="+$("#email_contato").val()+"&nome="+$("#nome_contato").val()+"&mensagem="+$("#mensagem_contato").val(),success:function(data,textStatus,XMLHttpRequest){mostraMsg(data)}})}function tipDefaults(){$.fn.tipsy.defaults={delayIn:0,delayOut:0,fade:true,fallback:"",gravity:"w",html:false,live:false,offset:0,opacity:0.8,title:"title",trigger:"manual"}}function init(){tipDefaults();arruma();$("#fundo").hide();$(".prev").bind("click",pratras);$(".next").bind("click",prafrente);$(".foto").bind("click",fotoClick);$(".foto").bind("carrega",carregar);$("#logo").bind("click",voltaInicio);$("#nav .mnu").find("*").bind("click",function(event){event.stopPropagation()});$("#nav .mnu").bind("click",navClick);$("#pro").bind("click",procurar);$(window).scroll(ehVisivel);$(window).trigger("scroll");$("#env").bind("click",enviar);$("#cad").bind("click",cadastrar);$(function(){$("#nav [title]").tipsy()})}$(document).ready(init);
