$(document).ready(function(){
// Removes Search text on focus, changes text to #000 and back to #999 out of focus
			    var inputs = document.getElementsByTagName("input");
				  for (var i = 0; i < inputs.length; i++) {
				     if (inputs[i].name == "search") {
				        inputs[i].style.color = "#999";
				        inputs[i].onfocus = function() {
				           if (this.value == "Search...") {
				              this.value = "";
				           }
				           this.style.color = "#000";
				        }
				        inputs[i].onblur = function() {
				           this.style.color = "#999";
				        }            
				     }
				  }
)};