addLoadEvent(
							function(){
								var onfocus_clear = function(){ if(this.value==this.name){this.value='';} };
								var onblur_clear = function(){ if(this.value==''){this.value= this.defaultValue;} };

								document.getElementById('name').onfocus = onfocus_clear;
								document.getElementById('name').onblur = onblur_clear;
								
								document.getElementById('email').onfocus = onfocus_clear;
								document.getElementById('email').onblur = onblur_clear;
								
								document.getElementById('enquiry').onfocus = onfocus_clear;
								document.getElementById('enquiry').onblur = onblur_clear;
							}
						);