$(document).ready(function() {
	// Make a textual link into a submit button
	$('#searchform .searchbutton a').click(function() {
		$('#searchform').submit();
		return false;
	});
	$("#id_category").change(function() {
		if ($(this).attr('value') != '') {
			window.location = "/directory/section/" + $(this).attr('value') + "/";
		}
	});
});