// JavaScript Document

$(document).ready(function(){ 

	// Add the value of "Search..." to the input field
	$("#search").val("Search...");

	// When you click on #search
	$("#search").focus(function(){

		// If the value is equal to "Search..."
		if($(this).val() == "Search...") {
			// remove all the text
			$(this).val("");
		}

	});

	// When the focus on #search is lost
	$("#search").blur(function(){

		// If the input field is empty
		if($(this).val() == "") {
			// Add the text "Search..."
			$(this).val("Search...");
		}

	});

});

