// JavaScript Document
    $(function(){
		
		$(".watermarkBrEmail").focus(function() {
			$(this).filter(function() {
				// We only want this to apply if there's not
				// something actually entered
				return $(this).val() == "" || $(this).val() == "Your email address"
			}).removeClass("watermarkOn").val("");
		});
		$(".watermarkBrEmail").blur(function() {
			$(this).filter(function() {
				// We only want this to apply if there's not
				// something actually entered
				return $(this).val() == ""
			}).addClass("watermarkOn").val("Your email address");
		});

    }); // End Document Load