$(function () {
	$("#s").focus(function () { 
		$(this).val("")
	}).blur( function () {
		$(this).val("Search") 
	});	
});
