window.onload = function() {
	nameInput = document.getElementsByName("name");
	nameInput[0].value="Name";
	companyInput = document.getElementsByName("company");
	companyInput[0].value="Company";
	emailInput = document.getElementsByName("email");
	emailInput[0].value="Email";
	telephoneInput = document.getElementsByName("telephone");
	telephoneInput[0].value="Telephone";
	messageInput = document.getElementsByName("message");
	messageInput[0].innerHTML="Message";
	
	nameInput[0].onclick = function() {
			this.value="";
	}
	nameInput[0].onblur = function() {
		if(this.value=="") {
			this.value="Name";
		}
	}
	
	companyInput[0].onclick = function() {
		this.value="";
	}
	companyInput[0].onblur = function() {
		if(this.value=="") {
			this.value="Company";
		}
	}
	
	emailInput[0].onclick = function() {
		this.value="";
	}
	emailInput[0].onblur = function() {
		if(this.value=="") {
			this.value="Email";
		}
	}
	
	telephoneInput[0].onclick = function() {
		this.value="";
	}
	telephoneInput[0].onblur = function() {
		if(this.value=="") {
			this.value="Telephone";
		}
	}
	
	messageInput[0].onclick = function() {
		this.innerHTML="";
	}
	messageInput[0].onblur = function() {
		if(this.innerHTML=="") {
			this.innerHTML="Message";
		}
	}
	
}