$(document).ready(function(){
	function getBaseURL(){var a=location.href;a=a.substring(0,a.indexOf("/",14));if(a.indexOf("http://localhost")!=-1){a=location.href;var b=a.indexOf(location.pathname);b=a.indexOf("/",b+1);return a.substr(0,b)+"/"}else return a+"/"};
	
	$('#searchForm').submit(function() {
		var query = $('#searchInput').val();
		query = escape(query);

		window.location = getBaseURL()  + "search/"+query;
		return false;
	});

});
