$(document).ready(function(){ 

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

	$("a.linky").toggle( 
				function () { 
 					$("#linkyArea").animate({height: "225px"}, {queue:false, duration: 600,}) 
 					$("#contactArea").animate({height: "0px"}, {queue:false, duration: 600,})
 					$("#impressuArea").animate({height: "0px"}, {queue:false, duration: 600,})
                }, 
                function () { 
					$("#linkyArea").animate({height: "0px"}, {queue:false, duration: 600,}) 
				} 
				
		); 
        
}); 
