j(document).ready(function(){ 

	j("#contactArea").css('height', '0px');

	j("a.contact").toggle( 
				function () { 
 					j("#contactArea").animate({height: "225px"}, {queue:false, duration: 1700, easing: 'easeOutBounce'}) 
                }, 
                function () { 
					j("#contactArea").animate({height: "0px"}, {queue:false, duration: 1700, easing: 'easeOutBounce'});
					
					j("#contactArea").css('visibility', 'none');
				} 
		); 
        
}); 