$(document).ready(function() {

	$("#contactArea").css('height', '0px');

	$("a.contactLink").toggle(
				function() {
					window.scrollTo(0, 0);
					$("#contactArea").animate({ height: "500px" }, { queue: false, duration: 1700, easing: 'easeOutBounce' })
				},
        function() {
        	$("#contactArea").animate({ height: "0px" }, { queue: false, duration: 1700, easing: 'easeOutBounce' })
        }
		);
});
