$(document).ready(function() {

	$("input#search-button")
		.attr("value","")
		.click(function() {
			if ($("input#q").val().length == 0)
			{
				alert("You must enter your search terms first");
				$("input#q").focus();
				return false;
			}
			return true;
		});

});