/*******************************************************************************
	'Toggle' taken from http://www.sitepoint.com/forums/showthread.php?t=184350 
	All rights go to this FauxPas person.

	I've edited it so I can hide/show more than one object per page. Also,
	I mucked with the command so it shows items that start hidden. To hide
	objects at the beginning, instead of using onLoad, I used a CSS class
	with the 'display' attribute set to 'none'. That's why the toggle command
	needs 'block' (which is the browser default). Without it, nothing shows up.

	Purpose: Function hides any item with an id property.
	Variables:
		name: (in)
			The id of the object you wish to show or hide
		output:
			None

*******************************************************************************/
function toggle(name) 
{
	if(document.getElementById(name).style.display=='block' )
	{
		document.getElementById(name).style.display = 'none';
	}
	else
	{
   	document.getElementById(name).style.display = 'block';
	}
}
/******************************************************************************/
