$(document).ready(function(){ 

	$("#contactArea").css('height', '0px');

	$("a.contact").toggle( 
				function () { 
 					$("#contactArea").animate({height: "325px"}, {queue:false, duration: 500, easing: 'easeInOutSine'}) 
                }, 
                function () { 
					$("#contactArea").animate({height: "325px"}, {queue:false, duration: 500, easing: 'easeInOutSine'})  
				} 
		); 
        
});

$(document).ready(function(){ 

	$("#contactArea").css('height', '0px');

	$("a.close_tab").toggle( 
				function () { 
 					$("#contactArea").animate({height: "0px"}, {queue:false, duration: 500, easing: 'easeInOutSine'}) 
                }, 
                function () { 
					$("#contactArea").animate({height: "0px"}, {queue:false, duration: 500, easing: 'easeInOutSine'})  
				} 
		); 
        
});

