// Little doodads to use in the blog.
// BTW, I really love JQuery.
$().ready (function() {
	$("#s").blur(function(){
			if (this.value=="" || this.value=="search this site...")
				this.value = "search this site...";
		}).focus(function(){
			if (this.value=="search this site...")
				this.value = "";
		});
});