
function goSearch()
{
	var Regular =/^\s*/;
	
	TextBox = document.getElementById('querystring');
	
	Query = TextBox.value;
	Query = Query.replace(Regular, "");
	
	if(Query != "")
		document.location.href='/search/' + Query +'/';
}

$(document).ready(function()
{
	$('a').mouseup(function() {this.blur();});
}
);
