function doBlink() 
{
    var el = document.getElementById("SLOGAN3");
    if (el)
        if (el.style.color == "red")
            el.style.color = "lime";
        else
            el.style.color = "red";
}

function startBlink() 
{
    setInterval("doBlink()",500);
}

//window.onload = startBlink;

function SetMenuNormal(el)
{
    el.style.backgroundColor='#dadada';
}

function SetMenuHover(el)
{
    el.style.backgroundColor='#FF6000';
}
