var currentId = "";
function setImg(oId, img)
{
	var myAllImgs = new Array("bt-fobtech.jpg","bt-cleanroom.jpg","bt-moduler.jpg","bt-containment.jpg","bt-innovida.jpg","bt-lcm.jpg");
	for(j=0;j<6;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;
}

