$(function(){
	$('#FilterIndexForm	').submit(function(){
		here = webroot+"/busca";
		here = here.replace(/por:.*\//g,'');
		here += '/por:' + escape($('#FilterPor').val());
		
		here = here.replace(/limit:[0-9]*\//g,'');
		
		location.href = here;
		return false;
	});
});