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