// JavaScript Document
    $(function(){
		$("#masthead .watermarkSearch").focus(function() {
			$(this).filter(function() {
				// We only want this to apply if there's not
				// something actually entered
				return $(this).val() == "" || $(this).val() == "Product seach, e.g. Omega 3"
			}).removeClass("watermarkOn").val("");
		});
		$("#masthead .watermarkSearch").blur(function() {
			$(this).filter(function() {
				// We only want this to apply if there's not
				// something actually entered
				return $(this).val() == ""
			}).addClass("watermarkOn").val("Product seach, e.g. Omega 3");
		});
		
		//-----------------------------------------------------------------------------------------
		
		$("#extra .watermarkOfferCode").focus(function() {
			$(this).filter(function() {
				// We only want this to apply if there's not
				// something actually entered
				return $(this).val() == "" || $(this).val() == "Offer code"
			}).removeClass("watermarkOn").val("");
		});
		$("#extra .watermarkOfferCode").blur(function() {
			$(this).filter(function() {
				// We only want this to apply if there's not
				// something actually entered
				return $(this).val() == ""
			}).addClass("watermarkOn").val("Offer code");
		});
		
		//-----------------------------------------------------------------------------------------
		
		$("#extra .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("");
		});
		$("#extra .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");
		});
		
		//-----------------------------------------------------------------------------------------
		
		$("#content .watermarkBusinessTypeOther").focus(function() {
			$(this).filter(function() {
									
				// We only want this to apply if there's not
				// something actually entered
				return $(this).val() == "" || $(this).val() == "Please specify"
			}).removeClass("watermarkOn").val("");
		});
		$("#content .watermarkBusinessTypeOther").blur(function() {
			$(this).filter(function() {
				// We only want this to apply if there's not
				// something actually entered
				return $(this).val() == ""
			}).addClass("watermarkOn").val("Please specify");
		});
		
		//-------------------------------------- DOB ----------------------------------------------
		
		$("#content .watermarkDob").focus(function() {
			$(this).filter(function() {
									
				// We only want this to apply if there's not
				// something actually entered
				return $(this).val() == "" || $(this).val() == "DD/MM/YYYY"
			}).removeClass("watermarkOn").val("");
		});
		$("#content .watermarkDob").blur(function() {
			$(this).filter(function() {
				// We only want this to apply if there's not
				// something actually entered
				return $(this).val() == ""
			}).addClass("watermarkOn").val("DD/MM/YYYY");
		});
		
		//-----------------------------------------------------------------------------------------

    }); // End Document Load

