
function buttonSwitch(id,loop)
{

document.getElementById("buttonSwitcher" + id).style.background="url(http://localhost/newletssync/images/hov_tabg.gif)"
document.getElementById("panelSwitch" + id).style.display="block";
for (var i=1;i<loop;i++)//Example if you want to add a new item increse one number present5
{
if(i!=id)
{
document.getElementById("buttonSwitcher" + i).style.background="url(http://localhost/newletssync/images/nor_tabg.gif)";
document.getElementById("panelSwitch" + i).style.display="none";
}
}
}