function Switch(id)
{
	CurrentDiv=document.getElementById("div" + id);
	CurrentImg=document.getElementById("img" + id);
	for (x=1;x<=4;x++){
		document.getElementById("div" + x).style.display="none";
		document.getElementById("Dimg" + x).style.zIndex = 1;
		document.getElementById("Dimg" + x).style.filter='alpha(opacity=50)';
		document.getElementById("Dimg" + x).style.opacity=0.5;
	}
	CurrentDiv.style.display="block";
	selectedImg = "/images/broker/vitality/V" + id + ".gif";
	CurrentImg.src=selectedImg;
	CurrentImg.style.zIndex = 15;
	document.getElementById("Dimg" + id).style.zIndex = 15;
	document.getElementById("Dimg" + id).style.filter='alpha(opacity=100)';
	document.getElementById("Dimg" + id).style.opacity=1;

}
