//*** Button colors. ***
var BTN_NORMAL = "#FFFFFF";
var BTN_HOVER  = "#F6CA26";

//*** Productline colors. ***
var PL_NORMAL = "#FFFFFF";
var PL_HOVER  = "#EBFFEC";



function bOut(oBtn)
{
  //*** Set button properties.
  oBtn.style.color = BTN_NORMAL;
}


function bOver(oBtn)
{
  //*** Set button properties.
  oBtn.style.color = BTN_HOVER;
}


function pOut(oLine)
{
  //*** Set item properties.
  oLine.style.backgroundColor = PL_NORMAL;
}


function pOver(oLine)
{
  //*** Set item properties.
  oLine.style.backgroundColor = PL_HOVER;
}

