// JavaScript Document for Sidebar Control
function setActive(page) {
	var getElement = document.getElementById(page);
	getElement.style.color = '#FFE7BA';
}



// jQuery Code 
$(document).ready(function(){

	var hoverOver = function(){ // Picks the particular div of the submenu and makes it slide down
			var $this = $(this);
			var whichDiv = $this.attr("id");
			$("#submenu"+whichDiv).slideDown("slow");
	    };
	
	var hoverOut = function(){ // Picks the particular div of the submenu and makes it slide up
			var $this = $(this);
			var whichDiv = $this.attr("id");
			$("#submenu"+whichDiv).slideUp("slow");
		};
	$("div[id^=_]").hoverIntent(hoverOver, hoverOut); // calls the hoverintent function on any div that starts with _ because only those have submenus
	
});