function submitGallery(gallery) {
	document.getElementById("gallery_" + gallery).submit()
}

function galleryAddSubmitAction(gallery, image) {
	document.getElementById("gallery_" + gallery).action;
}
var curRef = '';
function gotoReference(refId) {
	$(document).ready(function() {
		if (curRef == '') {
			curRef = refId;
		} else {
			$('#'+curRef).css('background-color', 'white');
			curRef = refId;
		}
		$('#'+refId).css('background-color', '#CAE1FF');
	});
}

var tocToggleBool = false;
$(document).ready(function() {
	$("#tocToggle").click(function(event) {
		$("#article_ContentMenu_ol").toggle("medium", function(event) {
		    if (tocToggleBool == false) {
				tocToggleBool = true;
				$("#tocToggle").html('Show');
			}
			else {
				tocToggleBool = false;
				$("#tocToggle").html('Hide');
			}
		});
	});
});
