$(document).ready(function(){
	$('#header form input[name="email"]').bind('click', function(){
		if ($(this).val() == 'E-mail address') $(this).val('');
	});
	$('#header form input[name="email"]').bind('blur', function(){
		if ($(this).val() == '') $(this).val('E-mail address');
	});
	$('#header form').bind('submit', function(){
		if ($('#header form input[name="email"]').val() == 'E-mail address') return false;
		if (!objValidateFocus(document.subscribe.email,"notEmpty")) {
			alert("Please enter your email address.");
			return false;
		} else {
			if (!objValidateFocus(document.subscribe.email,"emailStd")) {
				alert("The email address entered does not appear to be valid.  Please check the address and try again.");
				return false;
			}	
		}
		return true;	
	});
});