// Copyright (c) 2008 URL Appraisal, All Rights Reserved.

$(document).ready( function( ) {
	
	$("#textSearch").click( function( ) {
			if( this.value == "Enter Site Name Here..." ) {
					this.value = "";
			}
	});
	
	$("#textSearch").blur( function( ) {
			if( this.value == "" ) {
					this.value = "Enter Site Name Here...";
			}
	});

});