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