$(document).ready(function(){  

    //menu  
    //When mouse rolls over  
    $("#menu li").mouseover(function(){  
        $(this).stop().animate({height:'160px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
    });  
  
    //When mouse is removed  
    $("#menu li").mouseout(function(){  
        $(this).stop().animate({height:'50px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
    });  

    //title
    //When mouse rolls over  
    $("#titletop").mouseover(function(){  
        $(this).stop().animate({top:'0px',height:'93px'},{queue:false, duration:400, easing: 'easeOutBounce'})  
    });  

    //When mouse is removed  
    $("#titletop").mouseout(function(){  
        $(this).stop().animate({top:'3px',height:'88px'},{queue:false, duration:400, easing: 'easeOutBounce'})  
    });  
  

    //links
    //When mouse rolls over  
    $(".hoverlink").mouseover(function(){  
        $(this).stop().animate({top:'0px',height:'98px'},{queue:false, duration:400, easing: 'easeOutBounce'})  
    });  

    //When mouse is removed  
    $(".hoverlink").mouseout(function(){  
        $(this).stop().animate({top:'3px',height:'91px'},{queue:false, duration:400, easing: 'easeOutBounce'})  
    });  


    //search
    //When mouse rolls over  
    $("#searchwindow").mouseover(function(){  
        $(this).stop().animate({height:'160px', width:'340px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
    });  
  
    //When mouse is removed  
    $("#searchwindow").mouseout(function(){  
        $(this).stop().animate({height:'40px', width:'40px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
    });  



});  