$(document).ready(function(){ 

	$("#dropdown-wrapper").css('height', '0px');

	$("a.mailing").toggle( 
				function () { 
 					$("#dropdown-wrapper").animate({height: "120px"}, {queue:false, duration: 1400, easing: 'easeOutBounce'}) 
                }, 
                function () { 
					$("#dropdown-wrapper").animate({height: "0px"}, {queue:false, duration: 1400, easing: 'easeOutBounce'})  
				} 
		); 
        
}); 
