// JavaScript Document

var sport_name = "Women's Volleyball";
var sport_header = '<a href="/sports/volleyball/index.html"><span>' + sport_name + '</span></a>';
var sport_home = '<a href="/sports/volleyball/index.html"><span>Home Page</span></a>';
var sport_sched = '<a href="/sports/volleyball/schedule.html"><span>2009 Results</span></a></li><li><a href="/sports/volleyball/archive/2008_schedule.html"><span>2008 Results</span></a></li><li><a href="/sports/volleyball/ProgramRecordStats.html"><span>Program Records/Stats</span></a>';
var sport_roster = '<a href="/sports/volleyball/roster/index.html"><span>Roster</span></a>';
var sport_gallery = '<a href="/sports/volleyball/Pictures.html"><span>Photo Gallery</span></a>';
var sport_staff = '<a href="/sports/volleyball/staff.html"><span>Coaching Staff</span></a></li><li><a href="/sports/recruit_form.html"><span style="display:block;">Prospective Student-<br />Athlete Form</span></a></li><li><a href="/sports/volleyball/PressReleases.html"><span>Press Releases</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';
}