function initInputHint() {
  var inputs = $$('.input-hint');
  for(i = 0; i < inputs.length; i++) {
    var input = inputs[i];
    if (input.type!="text" && input.type!="textarea")
      continue;
  
    input.setStyle({color:'#666666'});
  
    input.observe('focus', function() {
	  if (this.value == $(this.id + "-hint").value) {
	  	this.value = '';
	  	this.setStyle({color: '#000000'});
	  }
	});
	input.observe('blur', function() {
	  if (this.value.length == 0) {
	  	this.value = $(this.id + "-hint").value;
	  	this.setStyle({color: '#666666'});
	  }
    });
  }
}
