// JavaScript Document

var site = location.href;
var myHQ = site.indexOf("/login/");
var myEmail = site.indexOf("/emailCenter/");
var teamPage = site.indexOf("searchTeamPart.asp");
var homePage = site.indexOf("donorRecognition.asp");
var genDonate = site.indexOf("donorConfirmation.asp");
var seaParticipant = site.indexOf("checkPartLogin.asp");

if ((myHQ > 0) || (myEmail > 0) || (teamPage > 0)) {
document.write("<style type=text/css>");
document.write("td.FAFRightNav {display:none}");
document.write("</style>");
}

if ((genDonate > 0) || (seaParticipant > 0)) {
document.write("<style type=text/css>");
document.write("#sound { display:block}");
document.write("</style>");
}

