<!--

if (document.images) version = "ok";
else version = "no";

if (version == "ok") {
    design_on = new Image();
    design_on.src = 'images/m_design_on.gif';
    design_off = new Image();
    design_off.src = 'images/m_design_off.gif';
    ezines_on = new Image();
    ezines_on.src = 'images/m_ezines_on.gif';
    ezines_off = new Image();
    ezines_off.src = 'images/m_ezines_off.gif';
    photography_on = new Image();
    photography_on.src = 'images/m_photography_on.gif';
    photography_off = new Image();
    photography_off.src = 'images/m_photography_off.gif';
    architecture_on = new Image();
    architecture_on.src = 'images/m_architecture_on.gif';
    architecture_off = new Image();
    architecture_off.src = 'images/m_architecture_off.gif';
    artistic_on = new Image();
    artistic_on.src = 'images/m_artistic_on.gif';
    artistic_off = new Image();
    artistic_off.src = 'images/m_artistic_off.gif';
    resources_on = new Image();
    resources_on.src = 'images/m_resources_on.gif';
    resources_off = new Image();
    resources_off.src = 'images/m_resources_off.gif';
    music_on = new Image();
    music_on.src = 'images/m_music_on.gif';
    music_off = new Image();
    music_off.src = 'images/m_music_off.gif';
    love_on = new Image();
    love_on.src = 'images/m_love_on.gif';
    love_off = new Image();
    love_off.src = 'images/m_love_off.gif';
}

function act(imgName) {
    if (version == "ok") {
        imgOn = eval(imgName + "_on.src");
        document[imgName].src = imgOn;
    }
}

function inact(imgName) {
    if (version == "ok") {
        imgOff = eval(imgName + "_off.src");
        document[imgName].src = imgOff;
    }
}

// -->
