$(document).ready(function(){
    $('#search').click(function(){
		$('.error').hide()
		//var term = encodeURIComponent($('#input').val())
        var term = $('#input').val()
		if ( term == '') {
			$('#error_1').show()
		} else if ( term.indexOf('.') > -1 ){
			$('#error_2').show()
		} else {
			window.location.replace('/suche/'+ term);
		}
	});
    $("body").keydown(function(e){
        if (e.keyCode == 13) {
            $("#search").click();
        }
    });
})
