$(document).ready(function() {
  
	$("#search-form").submit(function() {
	  if ($.trim($("#search-form .search").val()) == "") {
		  alert("Please enter your search term in the search field and try again.");
			return false;
		}
	});
	
});
