
$(document).ready(function(){
						   
	var white_space = new RegExp(/^\s+$/);
	
	var input = $('#above .search .searchForm');
	
	var product = document.product.product;
	
	input.focus( function() {
		
		if (product.value == "Product Search...")  {
			
			product.value = '';
			
		}
		
	}).blur( function() {
		
		if (product.value == "" || product.value == null || white_space.test(product.value))  {
		
			product.value = "Product Search...";
			
		}
		
	});
	
});
