$(document).ready(function(){
	$('input.searchHdr').focus(
		function()
		{
			var theVal = $(this).attr('value');
			if(theVal == 'Please Enter Keyword or Model #')
			{
				$(this).attr('value','');
			}
		}
	).blur(
		function()
		{
			var theVal = $(this).attr('value');
			if(theVal == '')
			{
				$(this).attr('value','Please Enter Keyword or Model #');
			}
		}
	);
});