
var menuLinks = new Array();
menuLinks["menu1"] = "";
menuLinks["menu2"] = "portfolio.html";
menuLinks["menu3"] = "solutions.html";
menuLinks["menu4"] = "contacts.html";
menuLinks["menu5"] = "services.html";
///////////////////////////////////////////////////////////////////////////////////////////////
function MenuMOver(obj) {
        document.getElementById(obj).className = "menucell_over";
}
///////////////////////////////////////////////////////////////////////////////////////////////
function MenuMOut(obj) {
        document.getElementById(obj).className = "menucell";
}
///////////////////////////////////////////////////////////////////////////////////////////////
function MenuMDown(obj) {
        document.location = menuLinks[obj];
}
///////////////////////////////////////////////////////////////////////////////////////////////
