$(document).ready( function() {
		
		/* SEARCH BOX TEXT */
		$("#quick_search").val("Product Search");
		$("#quick_search").focus( function() { $(this).val(""); } );
		$("#quick_search").blur( 
			function() { if ($(this).val() == "") { $(this).val("Product Search"); } }
			);
		
	}
);

