var $j = jQuery.noConflict();

/*
 * Written by Rob Schmitt, The Web Developer's Blog
 * http://webdeveloper.beforeseven.com/
 */

var active_color = '#000'; 
var inactive_color = '#999'; 
 
$j(document).ready(function() {
  $j("input.input_search").css("color", inactive_color);
  var default_values = new Array();
  $j("input.input_search").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;
    }
    $j(this).blur(function() {
      if (this.value == '') {
        this.style.color = inactive_color;
        this.value = default_values[this.id];
      }
    });
  });
});
