//////////////////////////////////////////////////////
//
//	The purpose of this file is to provide default 
//  	text in an form field (such as a search field).
//  	Once the field is in focus, the default text leaves
//  	Once the field is blurred, the default text return
//  	only in the instance that the field is empty upon blur.
//
//	This is code that uses the
//	jquery javascript library (http://jquery.com/)
//
//////////////////////////////////////////////////////
	$(window).load(function() {
		$("#acctnum").focus(function () {		
			if (this.value=="Enter Account Number") {
				this.value="";
			}
		});
		$("#acctnum").blur(function (){				
			if (this.value=="") {			
				this.value="Enter Account Number";
			}
		});
	});