
function onSearch(query) {
	if ( query != "" ) {
		window.location = "/search/" + query;
	}
}

$(document).ready(function() {
/*	var searchbox = new TriggerField({
		theme: 'darkness',
		onEnterPress: function(tf) {
			onSearch(tf.getValue());
		},
		handler: function(tf) {
			onSearch(tf.getValue());
		},
		width: 270,
		renderTo: 'searchbox'
	});*/
});


