// general site JS
$(document).ready(function(){
	// logout confirmation
	$(".logoutconfirm").click(function() {
		return confirm("Please confirm you want to logout?");
		});

	// new collapsing menu
	// Expand only the active menu, which is determined by the class name
	$(".expanded").find("+ ul").toggle();
	// Toggle the selected menu's class and expand or collapse the menu
	$("#menu > li > a.collapsed, #menu > li > a.expanded").click(function() {
		$(this).toggleClass("expanded").toggleClass("collapsed").find("+ ul").slideToggle("medium");
	});

	// facebox
	$('a[rel*=facebox]').facebox()
});
