// JavaScript Document
	$(document).ready(function() {

 	$("#name").val("Name").addClass("dim");
	$("#name").focus(function() {
		if (this.value == "Name"){
			this.value = "";
			$(this).removeClass("dim");
		}						  
	});
		$("#name").blur(function() {
		if (this.value == ""){
			this.value = "Name";
			$(this).addClass("dim");
		}						  
	});
	
	
	$("#email").val("Email").addClass("dim");
	$("#email").focus(function() {
		if (this.value == "Email"){
			this.value = "";
			$(this).removeClass("dim");
		}						  
	});
									} );
	
