
    $(document).ready(function() {  
      
        var top = '-' + $('#slidedown_content .content').css('height');  
        var easing = 'easeOutQuad';  
          
        $('#slidedown_top').mouseover(function() {  
            $('#slidedown_content').animate({'top' : 0}, {queue:false, duration:1000, easing: easing});  
        });  
          
        $('#container,#pageContainer').mouseover(function() {  
            $('#slidedown_content').animate({'top' : top}, {queue:false, duration:500, easing: easing});  
        });  
      
    }); 

