function BGMenuOn(bgid)
{
  document.getElementById(bgid).style.backgroundImage='url(/img/more_button_on.gif)';
}
function BGMenuOut(bgid)
{
  document.getElementById(bgid).style.backgroundImage='url(/img/more_button.gif)';
}

function BGMenuOn2(bgid)
{
  document.getElementById(bgid).style.backgroundImage='url(/img/more_button2_on.gif)';
}
function BGMenuOut2(bgid)
{
  document.getElementById(bgid).style.backgroundImage='url(/img/more_button2.gif)';
}


function BGMenuOn_v2(bgid)
{
  document.getElementById(bgid).style.backgroundImage='url(/img/more_button_v2_on.gif)';
}
function BGMenuOut_v2(bgid)
{
  document.getElementById(bgid).style.backgroundImage='url(/img/more_button_v2.gif)';
}
function BGMenuOn2_v2(bgid)
{
  document.getElementById(bgid).style.backgroundImage='url(/img/more_button3_v2_on.gif)';
}
function BGMenuOut2_v2(bgid)
{
  document.getElementById(bgid).style.backgroundImage='url(/img/more_button3_v2.gif)';
}


function SwapImg(imgID,imgURL)
{
  document.getElementById(imgID).src = imgURL;
}
function SwapBg(elementID,imgURL)
{
  document.getElementById(elementID).style.backgroundImage='url('+imgURL+')';
}
