﻿//Script for category sub pages menu 

function catalogueMenuItemOver(targetDivId, darkColor, lightColor, catfat)
{
    var leftDiv = "cat-item-left-" + targetDivId;
    var bodyDiv = "cat-item-body-" + targetDivId;
    var rightDiv = "cat-item-right-" + targetDivId; 
    var wrapperDiv = "cat-item-" + targetDivId;

    document.getElementById(leftDiv).style.backgroundImage = "URL('../images/cat-leftDark-" + darkColor + ".gif')"; 
    document.getElementById(rightDiv).style.backgroundImage = "URL('../images/cat-rightDark-" + darkColor + ".gif')"; 
    document.getElementById(bodyDiv).firstChild.style.color = '#FFFFFF'; 
    if (catfat == "1")
    {
        document.getElementById(bodyDiv).className= 'cat-item-body-fat arrow-on';
    }
    else
    {
         document.getElementById(bodyDiv).className= 'cat-item-body arrow-on';
    }
    
    document.getElementById(wrapperDiv).style.backgroundColor = "#"+darkColor;
    
    /*document.getElementById(bodyDiv).style.borderbottom = "1px solid #ffffff";*/
}

function catalogueMenuItemOff(targetDivId, darkColor, lightColor, catfat)
{
    var leftDiv = "cat-item-left-" + targetDivId;
    var bodyDiv = "cat-item-body-" + targetDivId;
    var rightDiv = "cat-item-right-" + targetDivId;
    var wrapperDiv = "cat-item-" + targetDivId;

    document.getElementById(leftDiv).style.backgroundImage = "URL('../images/cat-leftDark-" + lightColor + ".gif')"; 
    document.getElementById(rightDiv).style.backgroundImage = "URL('../images/cat-rightDark-" + lightColor + ".gif')"; 
    document.getElementById(bodyDiv).firstChild.style.color = '#000000'; 
    if (catfat == "1")
    {
        document.getElementById(bodyDiv).className= 'cat-item-body-fat arrow-off';
    }
    else
    {
         document.getElementById(bodyDiv).className= 'cat-item-body arrow-off';
    }
    document.getElementById(wrapperDiv).style.backgroundColor = "#"+lightColor;
    document.getElementById(bodyDiv).style.borderbottom = "1px solid #ffffff";  
}

