$(function(){
	$('form input#keyword')
	.focus(function() {
		if($(this).val() == $(this).attr('defaultValue')) {
			$(this).css('color', '#000');
			$(this).val('');
		}
	})
	.blur(function() {
		if(jQuery.trim($(this).val()) == '') {
			$(this).css('color', '#999');
			$(this).val($(this).attr('defaultValue'));
		}
	});
});

