// JavaScript Document
function sh(num){
		for(var id = 0;id<=5;id++)
		{
			if(id==num)
			{
				document.getElementById("shc"+id).style.display="block";
				document.getElementById("sh"+id).className="shon";
			}
			else
			{
				document.getElementById("shc"+id).style.display="none";
				document.getElementById("sh"+id).className="shoff";
			}
		}
}
