$(document).ready(function() {
	/* Empty the keyword field in the header if someone clicks it. */
	$('#keyword').click(function() {
		$(this).val('');
	});
});