$(document).ready(function() {
	$('#searchmoreoptions legend').get(0).origText = $('#searchmoreoptions legend').text();
	$('#searchmoreoptions legend').css('cursor', 'pointer').text($('#searchmoreoptions legend').text() + " +");
	$('#searchmoreoptions legend').nextAll().hide();
	$('#searchmoreoptions legend').bind('click', function () {
		if ($(this).text().indexOf("-") != 	-1) {
			$(this).nextAll().hide();
			$(this).text(this.origText + " + ");
		} else {
			$(this).nextAll().show();
			$(this).text(this.origText + " - ");
		}
	});
});