﻿/*
	A little tiny bit of javascript.  But dont worry, everything will work without it.
	The table
*/

function tableruler()
{
	if (document.getElementById && document.createTextNode)
	{
		var tables=document.getElementsByTagName('table');
		for (var i=0;i<tables.length;i++)
		{
			if(tables[i].className=='people')
			{
				var trs=tables[i].getElementsByTagName('tr');
				for(var j=0;j<trs.length;j++)
				{
				    if(trs[j].parentNode.nodeName.toLowerCase()=='tbody')
				    {
						trs[j].onmouseover=function()
						{
							this.className='hover'; return false
						}
						trs[j].onmouseout=function()
						{
							this.className=''; return false
						}
					}
				}
			}
		}
	}
}

function rowLink(url) {
    document.location.href = url;
}
