$(document).ready(function()
{
	$('#q').bind('focus', function() { 
		if(this.value == 'Search site or enter product code...') this.value = ''; 
	}).bind('blur', function() { 
		if(this.value == '') this.value = 'Search site or enter product code...'; 
	});
});