$(document).ready(function() {
  	if ($("ul#nav").length > 0) { $("ul#nav").superfish(); }
	
	$("#searchText").focus(function() {
	if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});	
});

