// Javascript ms_look Functions
// Poly Songfack <poly@polystreet.com>


function moverBG(thisID) {
        var d = document.getElementById(thisID);
        d.style.backgroundColor = "#fbd400";
	  d.style.color = "#00ffff";
}

function moutBG(thisID) {
        var d = document.getElementById(thisID);
        d.style.backgroundColor = "#000000";
	  d.style.color = "#fbd400";
}

function moverBGM(thisID) {
        var d = document.getElementById(thisID);
        d.style.backgroundColor = "#fffff0";
}

function moutBGM(thisID) {
        var d = document.getElementById(thisID);
        d.style.backgroundColor = "#F0F8FF";
}


function moverBGS(thisID) {
        var d = document.getElementById(thisID);
        d.style.backgroundColor = "#fffff0";
	  d.style.border = "1 solid #bebebe";
}

function moutBGS(thisID) {
        var d = document.getElementById(thisID);
        d.style.backgroundColor = "#f8f8ff";
	  d.style.border = "1 solid #f8f8ff";
}


function chColor(thisID,thisColor) {
        var d = document.getElementById(thisID);
        d.style.backgroundColor = thisColor;
}




