// JavaScript Document

var sport_name = "RAMS Football";
var sport_header = '<a href="/sports/football/index.html"><span>' + sport_name + '</span></a>';
var sport_home = '<a href="/sports/football/index.html"><span>Home Page</span></a>';
var sport_sched = '<a href="/sports/football/schedule.html"><span>Schedule / Results</span></a>';
var sport_roster = '<a href="/sports/football/roster.html"><span>Roster</span></a>';
var sport_gallery = '<a href="/sports/football/gallery/index.html"><span>Photo Gallery</span></a>';
var sport_staff = '<a href="/sports/football/staff.html"><span>Coaching Staff</span></a>';

function dispResults( table )
{
	document.getElementById(table).style.display = 'block';
}
function dispResults2( link, table )
{
	document.getElementById(table).style.left = link.offsetParent.offsetLeft + 'px';
	document.getElementById(table).style.display = 'block';
}
function hideResults( table )
{
	document.getElementById(table).style.display = 'none';
}