$(document).ready(function(){
	$('#frm-find input.text').focus( function() {	if ($(this).val() == 'Type in product code...') $(this).val(''); });
	$('#frm-find input.text').blur(  function() {	if ($(this).val() == '') $(this).val('Type in product code...'); });
});