/* Author:  Terry Apodaca

*/

//Clears fields on click
/*function clearField(form) {
	jQuery(form).find("input.text, textarea").each(function(){ 
		this.defaultValue = this.attr("value");
        jQuery(this).click(function(){
			if(this.attr("value") == this.defaultValue){
				jQuery(this).attr("value","");
			}
            //return false;
		});
		jQuery(this).blur(function(){
			if(this.attr("value") == ""){
				jQuery(this).attr("value", this.defaultValue);
			}
		});
    });
}
*/
