// JavaScript Document
    $(function(){
		
		$("#newslettersignup .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("");
		});
		$("#newslettersignup .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");
		});
		
		$("#newslettersignup .watermarkBrFirstname").focus(function() {
			$(this).filter(function() {
				// We only want this to apply if there's not
				// something actually entered
				return $(this).val() == "" || $(this).val() == "Your first name"
			}).removeClass("watermarkOn").val("");
		});
		$("#newslettersignup .watermarkBrFirstname").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 first name");
		});
		
		$("#newslettersignup .watermarkBrSurname").focus(function() {
			$(this).filter(function() {
				// We only want this to apply if there's not
				// something actually entered
				return $(this).val() == "" || $(this).val() == "Your surname"
			}).removeClass("watermarkOn").val("");
		});
		$("#newslettersignup .watermarkBrSurname").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 surname");
		});
		
		//-----------------------------------------------------------------------------------------

    }); // End Document Load

