$(document).ready(function() {
	
	$("#searchtext").focus();
					
	$('#searchbutton').click(function(e){
		if ($("#searchtext").val().length > 1) {
			$("#searchformular").submit(); 
		} else {
			return false;
		}
	});
	
});