function changeHome(theSwitch, theItem, img) {

    document.getElementById(theItem).style.background = "url(" + img + ")";
    if (theSwitch == "on") {
        theItem.style.color = "#9d227e";
    } else {
        theItem.style.color = "#d5c6d7";
    }
}



function changeHomeMenu(theSwitch, theItem, img) {

    theItem.style.background = "url(" + img + ")";
    if (theSwitch == "on") {
        theItem.style.color = "#9d227e";
    } else {
        theItem.style.color = "#d5c6d7";
    }
}




function highlightLeftMenu(theSwitch, theItem) {

    if (theSwitch == "on") {
        theItem.style.backgroundColor = "#dcf8ff";
        theItem.style.borderTop = "1px solid #ff8243";
        theItem.style.borderBottom = "1px solid #ff8243";
        theItem.style.margin = "-1px 0px -1px 0px";
    } else {
        theItem.style.background = "none";
        theItem.style.borderTop = "none";
        theItem.style.borderBottom = "none";
        theItem.style.margin = "0px 0px 0px 0px";
    }

}


function highlightMenuItem(theSwitch, theItem, product) {

    var productImageDiv = document.getElementById("productImageDiv");
    var productImage = document.getElementById("productImage");

    if (theSwitch == "on") {
        theItem.style.backgroundColor = "#dcf8ff";
        theItem.style.borderTop = "1px solid #ff8243";
        theItem.style.borderBottom = "1px solid #ff8243";
        theItem.style.margin = "-1px 0px -1px 0px";

        var myImage = productImages[product];

        /* We have to deal with IE and Firefox in a different way */
        var arVersion = navigator.appVersion.split("MSIE");
        var version = parseFloat(arVersion[1]);
        if ((version >= 5.5) && (version < 7) && (document.body.filters)) {

            //Apply the PNG IE Fix
            //Correctly handle PNG transparency in Win IE 5.5 & 6.
            //http://homepage.ntlworld.com/bobosola. Updated 18-Jan-2006.
            var imgID = (myImage.id) ? "id='" + myImage.id + "' " : "";
            var imgClass = (myImage.className) ? "class='" + myImage.className + "' " : "";
            var imgTitle = (myImage.title) ? "title='" + myImage.title + "' " : "title='" + myImage.alt + "' ";
            var imgStyle = "display:inline-block;" + myImage.style.cssText;
            var strNewHTML = "<span " + imgID + imgClass + imgTitle
               				 + " style=\"" + "width:" + myImage.width
               				 + "px; height:" + myImage.height
               				 + "px;" + imgStyle + ";"
               				 + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
               				 + "(src=\'" + myImage.src + "\', sizingMethod='scale');\"></span>";

            myImage.outerHTML = strNewHTML;
            productImageDiv.innerHTML = myImage.outerHTML;

        } else {

            if (productImage) {
                productImageDiv.removeChild(productImage);
            }

            productImageDiv.appendChild(myImage);

        }

        productImageDiv.style.display = "block";

    } else {

        theItem.style.background = "none";
        theItem.style.borderTop = "none";
        theItem.style.borderBottom = "none";
        theItem.style.margin = "0px 0px 0px 0px";

        if (productImage) {
            productImageDiv.removeChild(productImage);
        }

        productImageDiv.style.display = "none";

    }

}

function highlightMenuProduct(theSwitch, theItem) {

    if (theSwitch == "on") {
        theItem.style.color = "#9d227e";
        theItem.style.backgroundColor = "#dcf8ff";
        theItem.style.borderTop = "1px solid #ff8243";
        theItem.style.borderBottom = "1px solid #ff8243";
        theItem.style.margin = "-1px 0px -1px 0px";
    } else {

        theItem.style.color = "#d5c6d7";
        theItem.style.background = "none";
        theItem.style.borderTop = "none";
        theItem.style.borderBottom = "none";
        theItem.style.margin = "0px 0px 0px 0px";
    }

}

function highlightMenuAbout(theSwitch, theItem) {

    if (theSwitch == "on") {
        theItem.style.color = "#9d227e";
        theItem.style.backgroundColor = "#dcf8ff";
        theItem.style.borderTop = "1px solid #ff8243";
        theItem.style.borderBottom = "1px solid #ff8243";
        theItem.style.margin = "-1px 0px -1px 0px";
    } else {
        theItem.style.color = "#dcf8ff";
        theItem.style.background = "none";
        theItem.style.borderTop = "none";
        theItem.style.borderBottom = "none";
        theItem.style.margin = "0px 0px 0px 0px";
    }

}