$(function() {
	
	$("#first_name").focus(function() {
		if ($(this).val()=="first name"){
			$(this).val("");
		}
	}).blur(function() {
		if ($(this).val()==""){
			$(this).val("first name");
		}
	});
	
	$("#last_name").focus(function() {
		if ($(this).val()=="last name"){
			$(this).val("");
		}
	}).blur(function() {
		if ($(this).val()==""){
			$(this).val("last name");
		}
	});
	
	$("#email").focus(function() {
		if ($(this).val()=="email address"){
			$(this).val("");
		}
	}).blur(function() {
		if ($(this).val()==""){
			$(this).val("email address");
		}
	});
	
	$("#postcode").focus(function() {
		if ($(this).val()=="first part of postcode (optional)"){
			$(this).val("");
		}
	}).blur(function() {
		if ($(this).val()==""){
			$(this).val("first part of postcode (optional)");
		}
	});
	
	$("#user_login").focus(function() {
		if ($(this).val()=="email address"){
			$(this).val("");
		}
	}).blur(function() {
		if ($(this).val()==""){
			$(this).val("email address");
		}
	});
	
	$("#user_pass").focus(function() {
		if ($(this).val()=="password"){
			$(this).val("");
		}
	}).blur(function() {
		if ($(this).val()==""){
			$(this).val("password");
		}
	});
	
});