// JavaScript Document

var sport_name = "Women's Softball";
var sport_header = '<a href="/sports/softball/index.html"><span>' + sport_name + '</span></a>';
var sport_home = '<a href="/sports/softball/index.html"><span>Home Page</span></a>';
var sport_sched = '<a href="/sports/softball/schedule.html"><span>Schedule / Results</span></a>';
var sport_roster = '<a href="/sports/softball/roster.html"><span>Roster</span></a>';
var sport_gallery = '<a href="/sports/softball/multimedia/index.html"><span>Photo Gallery</span></a>';
var sport_staff = '<a href="/sports/softball/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';
}