var myDiv = 'a';
var div;
var divs=['a','b','c','d','e','f','g','h','i'];

window.onload=function()
{
try{
hidealltabs();
toggleMenu(divs[0]);
}
catch(e){}
}
function toggleMenu(div) {
	
	hidealltabs();

	document.getElementById(div).style.display = 'block';
	
	document.getElementById('a'+div).className = 'selected';
	

}

function hidealltabs()
{

for(z=0;z<divs.length;z++)
{
document.getElementById(divs[z]).style.display = 'none';
	document.getElementById('a'+divs[z]).className = '';

}

}

function Show_min(part_id)
{
	for(loopcounter=1;loopcounter<=2;loopcounter++)
	{
	
		if(loopcounter == part_id)
			{ 
				document.getElementById('part'+loopcounter).style.display='block'; 
				document.getElementById('select'+loopcounter).className="yearTabOn"
				//document.getElementById('HideAll').className="yearTabOff";
			} 
		else
			{ 
				document.getElementById('part'+loopcounter).style.display='none'; 
				document.getElementById('select'+loopcounter).className="yearTabOff";
				//document.getElementById('HideAll').className="yearTabOff";
			}
	}
} 
