$(document).ready(function () {
    //focus and blur stuff so that uncool browers show the effect
	$("input[type=text], textarea").focus(function(){
    	$(this).addClass("focus");
    }).blur(function(){
    	$(this).removeClass("focus");
    });
    
    //front end validation
    $("#contactUsForm").validate({
		rules: {
			fullName: {
				required: true
			},
			emailAddress:{
				email: true,
				required: true
			},
			message: {
				required: true,
				minlength: 5
			}
		}
	});
});
