
$(function(){if(!$.browser.msie){$("img").lazyload({failurelimit:50,threshold:200});}});$(function(){$("#ContactForm").submit(function(){msg="";if($(this).find(":input[name=name]").val().length==0)
msg+="Your name was missing.\n";if(!$(this).find(":input[name=email]").val().match(/^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/))
msg+="Your email address is invalid.\n";if($(this).find("textarea[name=message]").val().length==0)
msg+="The message you would like to send.\n";if(msg.length!=0){alert("There were errors submitting the form:\n"+"___________________________________\n\n"+
msg);return false;}});});
