// JavaScript Document
jQuery(document).ready(function(){
	jQuery("#topsearch input[type=text]").focus(function() {
		if( this.value == this.defaultValue ) {
		this.value = "";
		}
		}).blur(function() {
		if( !this.value.length ) {
		this.value = this.defaultValue;
		}
	});
});
