	  $(document).ready(function(){
	                $("#contactLink").click(function(){
	                    if ($("#contactForm").is(":hidden")){
	                        $("#contactForm").slideDown("slow");
	                    }
	                    else{
	                        $("#contactForm").slideUp("slow");
	                    }
	                });
	            });
	            function closeForm(){
	                $("#messageSent").show("slow");
	                setTimeout('$("#messageSent").hide();$("#contactForm").slideUp("slow")', 2000);
	                submitform();
           }
	            function cancelForm(){
	                $("#messagenotSent").show("slow");
	                setTimeout('$("#messagenotSent").hide();$("#contactForm").slideUp("slow")', 2000);
		   }



function submitform()
{
  document.friendform.submit();
}
