$(document).ready(function() {
						   
	/* Clear search field when clicked */
	
	$('input#keywords').each(function() {
		var $this = $(this);
		if($this.val() === '') {$this.val($this.attr('title'));}
		$this.focus(function() {
			if($this.val() === $this.attr('title')) {$this.val('');}
		});
		$this.blur(function() {
			if($this.val() === '') {$this.val($this.attr('title'));}
		});
	});
	
	/* Do not allow form to submit if the default text is still in the input */
	
	$('header form').submit(function() {
		var $input = $('input#keywords');
		if ($input.val() == '' || $input.val() == $input.attr('title'))
		{
			$input.focus();
			return false;			
		}
	});
});
