﻿var menuHeaders = ["ctl00_HomeLi", "ctl00_InspirationLi", "ctl00_TentsInteriorsLi", "ctl00_InteriorsLi", "ctl00_ServicesLi", "ctl00_GalleryLi", "ctl00_TestimonialsLi",
                    "ctl00_PeopleLi", "ctl00_CompanyLi", "ctl00_SalesLi"];

function KeepHeaderAlive(header) {
    if (document.getElementById(menuHeaders[header].toString()).className != "Alive") {
        document.getElementById(menuHeaders[header].toString()).className = "MainMenuHover";
    }
}

function ReturnHeader(header) {
    for (var key in menuHeaders) {
        var currentClass = document.getElementById(menuHeaders[header].toString()).className;
        if (currentClass != "Alive") {
            document.getElementById(menuHeaders[header].toString()).className = "";
        }
    }
}

function Go(loc) {
    window.location = loc;
}