$(document).ready(function() { 

	$('#splash_tags dd').mouseover(function() {
           $('#tag_main').removeClass('tag_on');
	});

	// show the default search value when not in the search box
	function clearText(){
	  if (this.defaultValue == this.value) this.value = '';
	  else if (this.value == '') this.value = this.defaultValue;
	}
	$("#keyword").focus(clearText).blur(clearText);
  
});
