// JavaScript Document
function swapStyleOver(id,className)
{
	window.document.getElementById(id).className = className;
}
function swapStyleOut(id,className)
{
	window.document.getElementById(id).className = className;
}
function toggleDiv(divId,imgId)
{
	if (window.document.getElementById(divId).style.display == 'none')
	{
		window.document.getElementById(divId).style.display = 'inline';
		window.document.getElementById(imgId).src = '/SFXPictures/platformPages/arrowDwn.gif';
	}
	else
	{
		window.document.getElementById(divId).style.display = 'none';
		window.document.getElementById(imgId).src = '/sfxPictures/platformPages/arrowRt.gif';
	}
}