$(document).ready(function(){



});



// clearing  inputs on focus
function doClear(theText) { if (theText.value == theText.defaultValue) { theText.value = ""; } }
//replace input value with default on blur
function doReset(theText) { if (theText.value == "") { theText.value = theText.defaultValue; } }



