$(document).ready(function() {
	if ($('#page-header #keywords').length > 0) {
		var k = $('#page-header #keywords');
		k.live('focus', function() {
			if ($(this).attr("value") == "Search the Forum") $(this).attr("value", "");
		});
		k.live('blur', function() {
			if($(this).attr("value") == "") $(this).attr("value", "Search the Forum");
		});
	}
});
