jQuery(document).ready(function($) {  

/* MAIN MENU ANIMATION */
$('#mainnav li a').hover(
  function(){
    $('#logo-gdescendent').data('theHeight',$('#logo-gdescendent').css('height'));
    if( $(this).attr('id') == 'mainnav-quemsomos' ){ $('#logo-gdescendent').css({height:'45px'}); }
    else if( $(this).attr('id') == 'mainnav-colecoes' ){ $('#logo-gdescendent').css({height:'77px'}); }
    else if( $(this).attr('id') == 'mainnav-compreaqui' ){ $('#logo-gdescendent').css({height:'109px'}); }
    else if( $(this).attr('id') == 'mainnav-brincadeiras' ){ $('#logo-gdescendent').css({height:'140px'}); }
    else if( $(this).attr('id') == 'mainnav-contato' ){ $('#logo-gdescendent').css({height:'172px'}); }
    else if( $(this).attr('id') == 'mainnav-imprensa' ){ $('#logo-gdescendent').css({height:'204px'}); } 
  },
  function(){
    $('#logo-gdescendent').css({height:$('#logo-gdescendent').data('theHeight')});
  }
);


/* OPEN EXTERNAL LINKS IN NEW WINDOW */
$("a[href^=http]").click(
  function(){
    if(this.href.indexOf(location.hostname) == -1) {
      window.open(this.href); return false;
    }
  }
)


$("a[href*=facebook.com], a[href*=twitter.com], .footer a.internal-pop").click(
  function(){
      window.open(this.href); return false;
  }
)

//.__________________________
});
