$(function() {
	
	// Clear the keyword box if it's the default..
	$('#keyword').click(function() {
		if($(this).attr('value') == 'Search AATG') {
			$(this).attr('value', '');
		}
	});
	
});