$(document).ready(function()
{
	if($('#keyword').val() == 'enter keyword or model number')
	{
		$('#keyword').css('font-family', '"Trebuchet MS",Arial');
		$('#keyword').css('font-style', 'italic');
	}
	
	$('#keyword').focus(function()
	{
		if($(this).val() == 'enter keyword or model number')
		{
			$(this).val('');
			$(this).css('font-family', 'Arial');
			$(this).css('font-style', 'normal');
		}
	});
	
	$('#keyword').focusout(function()
	{
		if($(this).val().length == 0)
		{
			$(this).css('font-family', '"Trebuchet MS",Arial');
			$(this).css('font-style', 'italic');
			$(this).val('enter keyword or model number');
		}
	});
});
