$(document).ready(function() { 

		SearchInit();

	});

function SearchInit() {
		$('#search-query').focus( function () {
				if ( this.value == 'Enter Keywords') { 
					this.value='';
				} else { 
					this.select();
				}
			});

// 		$('#search-query').blur( function () {
// 				if ( this.value == '' ) { 
// 					this.value = 'Enter Keywords';
// 				}
// 			});

		$('#search-submit').click( function () {
				if ( $('#search-query').val() == 'Enter Keywords' || $('#search-query').val() == '' ) { 
					$('#search-query').focus();
					return false;
				}
			});

}

