function pageInit()
{
	var contentStandard = $$("contentStandard");
	
	for(var i=0; i<contentStandard.length; i++) 
	{
		var stateStandard = $$("stateStandard", "div", contentStandard[i])[0];
		stateStandard.onclick = function()
		{
			toggle.hide(this);
			toggle.show(this.previousSibling);
			return false;
		}
		
		var seeState = $$("seeState", "div", contentStandard[i])[0];
		seeState.onclick = function()
		{
			toggle.show(this.nextSibling);
			toggle.hide(this);
			return false;
		}
		
		stateStandard.onclick();
	}
}