// JavaScript Document
// CLEAR INPUTS ONCLICK 
jQuery(function($) {
  var active_color = '#000'; // Colour of user provided text
  var inactive_color = '#777'; // Colour of default text
  $("input.default-value").css("color", inactive_color);
  var default_values = [];
  $("input.default-value").focus(function() {
    if (!default_values[this.id]) {
      default_values[this.id] = this.value;
    }
    if (this.value == default_values[this.id]) {
      this.value = '';
      this.style.color = active_color;
    }
    $(this).blur(function() {
      if (this.value == '') {
        this.style.color = inactive_color;
        this.value = default_values[this.id];
      }
    });
  });
});

Cufon.replace('.white-box .subtitle, h2.grey-bar-title, #changeable-widgets h3, #changeable-widgets h2, #reply-title, .map-top h3, .page-title, .entry-title, .search-title, .category-title, .archive-title, .entry-content h2, .entry-content h3, .places-index-choice h3, #footer-container h2, .widget-title, .cufon');

