// JavaScript Document

$(document).ready(function() { 
						   
	// Set the inline functions to set text fields blank on focus
	$('form input:text').focus(function(){
		if (this.value == this.defaultValue) {this.value = "";}
	});
	
	// Set the inline function to set text fields back to thier default on blur
	$('form input:text').blur(function(){
		if (this.value == "") {this.value = this.defaultValue;}
	});
	
});
