jQuery(document).ready(function(){
 setupRemoveDefault()
});
function setupRemoveDefault() {
 jQuery(".nolabel, #contact-us input, #contact-us textarea").click(
  function () {
   if(!jQuery(this).attr("rel") || jQuery(this).attr("rel") == jQuery(this).val()) {
    if(!jQuery(this).attr("rel")) {
     jQuery(this).attr("rel", jQuery(this).val());
    }
    jQuery(this).val("");
    jQuery(this).blur(
     function() {
      if(!jQuery(this).val()) {
       jQuery(this).val(jQuery(this).attr("rel"));
      }
     }
    );
   }
  }
 );
}


function loadAjax(loadIntoElID, URL, fx) {
 var imgHtml = '<img src="mysite/javascript/loading.gif" alt="loading . . ." />';
 jQuery("#" + loadIntoElID).html(imgHtml);
 jQuery("#" + loadIntoElID).load(URL, {}, function() {setupAjaxFields()});
 return true;
}


