$(document).ready(function(){
  
  // Galeria abre thumb   
  $(".thumb_gal").click(function(){
    $('#dstq_ad').attr('src',$(this).attr('src'));
  });
  
  // Menu principal   
  $('.menu li').hover(
    function(e){ e.preventDefault(); $(this).children().stop(true, false).animate({"top": "-22px"},{"duration":500, "easing":"easeOutBack"}); },
    function(e){ e.preventDefault(); $(this).children().stop(true, false).animate({"top": "0"},{"duration":400, "easing":"easeInBack"}); }
  );
  
  // Bt Veja este case
  $('.bt_veja').hover(
    function(e){ e.preventDefault(); $(this).stop(true, false).animate({"marginTop": "-22px"},{"duration":500, "easing":"easeOutBack"}); },
    function(e){ e.preventDefault(); $(this).stop(true, false).animate({"marginTop": "0"},{"duration":400, "easing":"easeInBack"}); }
  );

  // Social Icon
  $('.hdr_social a').hover(
    function(e){ e.preventDefault(); $(this).stop(true, false).animate({"marginTop": "-21px"},{"duration":650, "easing":"easeOutBack"}); },
    function(e){ e.preventDefault(); $(this).stop(true, false).animate({"marginTop": "0"},{"duration":400, "easing":"easeInBack"}); }
  );   
  
  // Define tamanho cases
  var xCt = ($(window).width());
  var yCt = ($(window).height());
  $('.cs_especf, .case .tit_relac').width(xCt);
  
  // Esconde nav se foto case == 1
  var nCases = $('#supersized li').length;
  if(nCases == 1){ 
    $('.load-item, #slide-list').hide().css({'margin':'-100px','background':'none'});
    $('.load-item').css({'marginTop':'-5000px'});
  }
       
  // Define tamanho nav_thumb
  var xThumb = ($("#slide-list li").width() + 4);
  var nThumb = $("#slide-list li").length;
  var tThumb = nThumb * xThumb;
  $("#slide-list").width(tThumb);
  
  // Define posicao clientes
  var yClientes = $(window).height()/2 - 125;
  $('div#clientes ul').css('top', yClientes);
  
  // Define posicao contato
  var tela = $(window).height();
  var yContato = $('#contato').height();
  $('#contato').css('top', tela - yContato - 75);
  
  // Accordion contato
	$('.drop_ctt a').click(function(e){
	  e.preventDefault();	  
    $(".drop_ctt form").stop().slideUp(600);
    $(this).next().stop().slideToggle(600);
	});
  
  // Accordion addb
	$('.srv_ad a').click(function(e){
	  e.preventDefault();	  
    $(".srv_ad div").slideUp(600);
    $(this).next().stop(true, false).slideToggle(1000);
	});
  
  // Grafico addb
  $('#grafico a').hover(function(e){
	  e.preventDefault();	  
    $("#grafico p").stop(true, true).fadeOut(50);
    $("#"+$(this).attr('rel')).stop(true, true).fadeIn(600);
	});
  $('#grafico a').click(function(e){
	  e.preventDefault();
	});
  
  // Trabalhos hover
  $('.portf li, #clientes li').hover(
    function(e){
      e.preventDefault();
      $(this).animate({"top": "-6px"},{"duration":250, "easing":"easeOutBack"});
    },
    function(e){
      e.preventDefault();
      $(this).animate({"top": "0"},{"duration":500, "easing":"easeInBack"});
    }
  );
  
  // Simulador Razao Emocao
	$('.bt_sim_em').click(function(e){
	  e.preventDefault();	    
    $("#"+$(this).attr('rel')).fadeToggle(600);
	});   
  $('.bt_sim_rz').click(function(e){
	  e.preventDefault();	      
    $("#"+$(this).attr('rel')).fadeToggle(600);
	});
  
  $('#emc_nvl0').click(function(e){ $('#emocao1, #emocao2, #emocao3').fadeOut(600) });
  $('#emc_nvl1').click(function(e){ $('#emocao2, #emocao3').fadeOut(600) });
  $('#emc_nvl2').click(function(e){ $('#emocao1, #emocao3').fadeOut(600) });
  $('#emc_nvl3').click(function(e){ $('#emocao1, #emocao2').fadeOut(600) });
  
  $('#rz_nvl0').click(function(e){ $('#razao1, #razao2, #razao3').fadeOut(600) });
  $('#rz_nvl1').click(function(e){ $('#razao2, #razao3').fadeOut(600) });
  $('#rz_nvl2').click(function(e){ $('#razao1, #razao3').fadeOut(600) });
  $('#rz_nvl3').click(function(e){ $('#razao1, #razao2').fadeOut(600) });      
        
});                 
