//JQUERY
$(document).ready(function() {			 
	$("#msg").hide();
	$("#msg").fadeIn("slow");
	
	$(".contactForm").validate();
	$("a.check").click(function() {
	  alert("Valid: " + $(".contactForm").valid());
	  return false;
	});

	
});// document ready

document.execCommand("BackgroundImageCache",false,true);