$(document).ready(
	function() {
		$('#firstname').focus(
			function() {
				if ($(this).val() == 'First Name') {
					$(this).val('');
				}
			}
		);
		$('#firstname').blur(
			function() {
				if (!$(this).val()) {
					$(this).val('First Name');
				}
			}
		);
		$('#lastname').focus(
			function() {
				if ($(this).val() == 'Last Name') {
					$(this).val('');
				}
			}
		);
		$('#lastname').blur(
			function() {
				if (!$(this).val()) {
					$(this).val('Last Name');
				}
			}
		);
		$('#email').focus(
			function() {
				if ($(this).val() == 'Email') {
					$(this).val('');
				}
			}
		);
		$('#email').blur(
			function() {
				if (!$(this).val()) {
					$(this).val('Email');
				}
			}
		);
	}
);
