
$(document).ready(
	function() {
		$("#search-button").click(
			function() {
				$(this).parent().submit();
			}
		);
		if($("#type-checked").val() != "") {
			var split_type = $("#type-checked").val().split(",");
			for(t = 0; t < split_type.length; t++) {
                $("#chkbox-" + split_type[t]).attr("checked", true);
			}
		}
	}
);
