<!--
	//Executes initialze() when the page loads--only then do
	//the html elements exist--allowing you to refer to them.
	window.onload=initialize;

	//assign functions to each element's events('registration'):
	function initialize()
	{
		showToggle('par_toggle', 1);
	}

	function showToggle(idString, nrToShow)
	{
		var paragraph_toggle;
		
		paragraph_toggle = document.getElementById(idString + nrToShow);
		paragraph_toggle.style.visibility = "visible";
		paragraph_toggle.style.display = "block";
		
		document.getElementById('anchor' + nrToShow).className = 'active';
	}
	
	function hideAllToggles(idString, numToggles)
	{
		var paragraph_toggle;
		var i;
		
		for (i = 1; i <= numToggles; i++)
		{
			paragraph_toggle = document.getElementById(idString + i);
			paragraph_toggle.style.visibility = "hidden";
			paragraph_toggle.style.display = "none";
			
			document.getElementById('anchor' + i).className = 'inactive';
		}
	}
	
// -->
