<!--

var W3CDOM = (document.createElement && document.getElementsByTagName);

var mouseOvers = new Array();
var mouseOuts = new Array();

window.onload = init;

function init()
{
	if (!W3CDOM) return;
	var nav = document.getElementById('mouseovers');
	var imgs = nav.getElementsByTagName('img');
	for (var i=0;i<imgs.length;i++)
	{
		imgs[i].onmouseover = mouseGoesOver;
		imgs[i].onmouseout = mouseGoesOut;
		var suffix = imgs[i].src.substring(imgs[i].src.lastIndexOf('.'));
		mouseOuts[i] = new Image();
		mouseOuts[i].src = imgs[i].src;
		mouseOvers[i] = new Image();
		mouseOvers[i].src = imgs[i].src.substring(0,imgs[i].src.lastIndexOf('.')) + "_on" + suffix;
		imgs[i].number = i;
	}
}

function mouseGoesOver()
{
	this.src = mouseOvers[this.number].src;
}

function mouseGoesOut()
{
	this.src = mouseOuts[this.number].src;
}

document.write("<table width=\"619\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" bgcolor=\"#000000\" id=\"mouseovers\"><tr><td width=\"99\" height=\"20\"><a href=\"railroadcompany.html\"><img src=\"images/nav/company.gif\" width=\"99\" height=\"20\" class=\"mo\" border=\"0\" alt=\"Our Company\" /></a></td><td width=\"5\"><img src=\"images/spacer.gif\" width=\"5\" height=\"1\" alt=\"\" /></td><td width=\"99\"><a href=\"railroadservices.html\"><img src=\"images/nav/services.gif\" width=\"99\" height=\"20\" class=\"mo\" border=\"0\" alt=\"Our Services\" /></a></td><td width=\"5\"><img src=\"images/spacer.gif\" width=\"5\" height=\"1\" alt=\"\" /></td><td width=\"99\"><a href=\"railroadprojects.html\"><img src=\"images/nav/projects.gif\" width=\"99\" height=\"20\" class=\"mo\" border=\"0\" alt=\"Railroad Projects\" /></a></td><td width=\"5\"><img src=\"images/spacer.gif\" width=\"5\" height=\"1\" alt=\"\" /></td><td width=\"99\"><a href=\"railroadcareers.html\"><img src=\"images/nav/careers.gif\" width=\"99\" height=\"20\" class=\"mo\" border=\"0\" alt=\"Careers\" /></a></td><td width=\"5\"><img src=\"images/spacer.gif\" width=\"5\" height=\"1\" alt=\"\" /></td><td width=\"99\"><a href=\"railroadlinks.html\"><img src=\"images/nav/links.gif\" width=\"99\" height=\"20\" class=\"mo\" border=\"0\" alt=\"Links & Resources\" /></a></td><td width=\"5\"><img src=\"images/spacer.gif\" width=\"5\" height=\"1\" alt=\"\" /></td><td width=\"99\"><a href=\"railroadcontact.html\"><img src=\"images/nav/contact.gif\" width=\"99\" height=\"20\" class=\"mo\" border=\"0\" alt=\"Contact Us\" /></a></td></tr></table>");