$(document).ready(function(){ 

	$("#contactArea").css('height', '0px');

	$("a.slide").toggle( 
				function () { 
 					$("#contactArea").animate({height: "525px"}, {queue:false, duration: 1300, easing: 'easeOutBounce'}) 
                }, 
                function () { 
					$("#contactArea").animate({height: "0px"}, {queue:false, duration: 1300, easing: 'easeOutBounce'})  
				} 
		); 
        
}); 
