function autoFill(id, v){
	$(id).css({ color: "#888" }).attr({ value: v }).focus(function(){
		if($(this).val()==v){
			$(this).val("").css({ color: "#000" });
		}
	}).blur(function(){
		if($(this).val()==""){
			$(this).css({ color: "#888" }).val(v);
		}
	});

}

$(document).ready( function() {
	
	autoFill($("#searchQuery"), "Type Keyword");
});

