/*
    author : Michael Bosworth 
    date : September 2007
    description : Handles menu and submenu events.
    dependencies : 
*/

/* Constructor */
function apqMenu(){
    /* Main Variables */
    this.currentMenu;

}

/* Public Functions */
apqMenu.prototype.showMenu = function(menuId){
	this.hideMenu();
	this.currentMenu = document.getElementById("subnav" + menuId);
	this.currentMenu.style.display = "block";
};

apqMenu.prototype.hideMenu = function(){
	if(this.currentMenu != null){
		this.currentMenu.style.display = "none";
	}
};

/* Execute  */
var apqMenu = new apqMenu();
