$(document).ready(function(){
	//Partial Sliding (Only show some of background)
	$('.boxgrid.peek').hover(function(){
		$(".cover", this).stop().animate({top:'90px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
	});
		
	// sliding contact form on click
	$("#contactLink").click(function(){
		if ($("#contactForm").is(":hidden")){
			$("#contactForm").slideDown("slow");
			document.getElementById("contactLink").innerHTML = "Close Me";
		} else {
			$("#contactForm").slideUp("slow");
			$("#messageSent").hide("slow");
			document.getElementById("contactLink").innerHTML = "Contact Us";
		}
	});
});


