/**
* @package Prospects
*/
$(document).ready(function() {

	// Provide the main keywords input with a default string at all times
	var q = 'Enter keywords, book title, ISBN';
	$('#params-q').focus(function() {
		if(this.value==q) {
			this.value = '';
		}
	});
	$('#params-q').blur(function() {
		if(this.value=='') {
			this.value = q;
		}
	});

	$('#form-search').submit(function() {
		if($('#params-q').val()==q) {
			$('#params-q').val('');
		}
		return true;
	});

	if($('#params-q').val()=='') {
		$('#params-q').val(q);
	}
});
