// JavaScript Document
$(document).ready(function() {
 $("#bottom-line a").click(showContact);
 myOffset = $("#bottom-line").offset();
 
	$("#contactForm").css({
		"display":"block",
		"top":myOffset.top +44+"px"
	})
});

function showContact() {

	$("#bottom-line").animate({
		"top":"-210px"
	});
	$("#contactForm").css({"display":"block"}).animate ({
		"top":myOffset.top + 44-217+"px"
	});

}

function hideContact() {
	$("#bottom-line").animate({
		"top":"0px"
	});
	$("#contactForm").animate ({
		"top":myOffset.top + 44 +"px"
	});
	
}

