$(document).ready(function(){
	
	
	// Form Input
	 $('.change').focus(function() {
		if (this.value == this.defaultValue) {
	 this.value = ''; }});
	 
	 $('.change').blur(function() {
		if (this.value == '') {
	 this.value = this.defaultValue; }});
	 
});					

