﻿$(document).ready(function(){

$("input[type='text'],textarea").focus(function(event){
this.value = (this.value == this.defaultValue) ? '' : this.value;
});

$("input[type='text'],textarea").blur(function(event){
this.value = (this.value == '') ? this.defaultValue : this.value;
});



});
