var atemFile = new Array('close','open');

function PopupAdviceMenu() {}

PopupAdviceMenu.prototype = {
	click: function(trgObj) {
		for (i in atemFile) {
			if (trgObj !== atemFile[i]) {
				var subMenuElm = document.getElementById(atemFile[i] + '-target');
				this.hideElement(subMenuElm);
			}
		}
		var subMenuElm = document.getElementById(trgObj + '-target');
		this.showElement(subMenuElm);
	},	
	
	showElement: function(obj) {
		obj.style.display = 'block';
	},
	
	hideElement: function(obj) {
		obj.style.display = 'none';
	}
}

var PAM = new PopupAdviceMenu();