﻿/** Navigation menu functions **/
function mainMenuOn(ellementId) {
	var curEllement = document.getElementById(ellementId);
	curEllement.style.backgroundColor = '#ff6600';
	document.getElementById(ellementId).style.overflow = "visible";
}

function mainMenuOff(ellementId) {
	var curEllement = document.getElementById(ellementId);
	curEllement.style.backgroundColor = '#ff9900';
	document.getElementById(ellementId).style.overflow = "hidden";
}
/** End Navigation menu functions **/

