$(document).ready(function(){   /*menu principal */

    //When mouse rolls over
    $("#menuprincipal li").mouseover(function(){
        $(this).stop().animate({height:'70px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });

    //When mouse is removed
    $("#menuprincipal li").mouseout(function(){
        $(this).stop().animate({height:'30px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });

});


$(document).ready(            /*filmes*/
function(){ 
 $("dd").hide();
 $("dt a").click(function(){
 if ($(this).parent().next().css("display") != "none" )
 {    $("dd:visible").slideUp("slow"); }
 else
 {   $("dd:visible").slideUp("slow");
     $(this).parent().next().slideDown("slow");
     }
 return false; }); });
 
function buscarCinema(query)       /*busca de filmes no cinema do google*/
{
     window.open("http://www.google.com.br/movies?q="+query+"&btnG=Pesquisar+filmes&hl=pt-BR");
}