$(document).ready(function(){
	
	$("#contactclick").click(function(){
	var contactstatus = document.getElementById("contact");
		if (contactstatus.className == "normal") {
			
			$("#contact").animate({ 
				top: "0px"
			}, 300 );
			contactstatus.className = "open";
		
		}
		
		else {
			$("#contact").animate({ 
				top: "-111px"
			}, 300 );
			contactstatus.className = "normal";
		}
  
    });    
});
