// JavaScript Document

/*
$(function(){
	$('input.search_text').focus(function(){
		if ($(this).val() != '') {

		} else if ($(this).val() == 'Product Name, Number') {
			$(this).val() = '';
		} else {
			$(this).val() = '';
		}
	});
});
*/
