function checkSize(objsName)
{
	objs = document.getElementsByName(objsName);
	
	for (i = 0; i < objs.length ; i++ )
	if (objs[i].width > 670)
	{
		objs[i].width = 670;
	}
}

firstHeaders = document.getElementsByName("firstHeader");
contentBoxes = document.getElementsByName("contentBox");

for (i = 0; i < firstHeaders.length ; i++ )
{
	firstHeaders[i].onmouseover = function()
	{
		this.className = "ForumCategoryHeaderLabel1Activated";
	}

	firstHeaders[i].onmouseout = function()
	{
		this.className = "ForumCategoryHeaderLabel1";
	}
}

for (i = 0; i < contentBoxes.length ; i++ )
{
	contentBoxes[i].columns = contentBoxes[i].getElementsByTagName("td");

	contentBoxes[i].onmouseover = function()
	{
		for (this.i = 0; this.i < this.columns.length ; this.i++ )
		{
			this.columns[this.i].style.backgroundColor = "#4D4D4D";
		}
	}

	contentBoxes[i].onmouseout = function()
	{
		for (this.i = 0; this.i < this.columns.length ; this.i++ )
		{
			this.columns[this.i].style.backgroundColor = "#262626";
		}
	}

}