var currentId = "";
function setImg(oId, img)
{
	var myAllImgs = new Array("snap-tab.gif","wed-tab.gif","per-tab.gif","tab-bg.gif","snap-tab.gif","fine-tab.gif","snap-tab.gif","tab-bg2.gif");
	for(j=0;j<8;j++)
	{
		if(document.getElementById('sharp'+j))
			document.getElementById('sharp'+j).style.background =  "url('images/"+myAllImgs[j]+"')";
	}
	document.getElementById(oId).style.background = "url('images/"+img+"')";
	currentId = oId;
}
