$(document).ready(function(){
	var docHeight = $(document).height();
	$('#contact-req').click(function() {
		$('#curtain').height(docHeight);
		$('#curtain').fadeIn("slow");
		$('#contactcontainer').fadeIn("slow");
		
	//	initForm();
		
		//$('#contactcontainer').height( $('#page-inner').height());
		$('html, body').animate({scrollTop: '0px'}, 800); 
		return false;
	});
	$('#contactClose').click(function() {
	
		contactClose();
		return false;
	});
	
});

function contactClose()
{
	$('#contactcontainer').fadeOut("slow");
	$('#curtain').fadeOut("slow");
	return false;

}


