$(document).ready(function(){

	var searchword;
	$('input#keywords').focus(function() {
		searchword = $(this).val();
		$(this).val('');
	}).blur(function() {
		if (this.value == '') {
			$(this).val(searchword);
		};
	});

});