/*****************************************************************************
SIFR CONFIG
*****************************************************************************/

var gill = { 
src: '/swf/gill-sans-2.swf',
};
sIFR.activate(gill);

sIFR.replace(gill, {
  selector: '.page-info h1',
  wmode: 'transparent',
  css: '.sIFR-root { background-color: none; color: #C15711; font-size: 40px; text-transform: uppercase; }'
});


/*
MAIN JAVASCRIPT
*/
function initBrowser(){

	if (navigator.appVersion.indexOf("Safari") != -1){

		if (!window.getComputedStyle) document.body.className += " safari";

		else document.body.className += " safari3";

	}

}



if (window.addEventListener){

	window.addEventListener("load", initBrowser, false);

}



sfHover = function() {

	var sfEls = document.getElementById("nav").getElementsByTagName("LI");

	for (var i=0; i<sfEls.length; i++) {

		sfEls[i].onmouseover=function() {

			this.className+=" sfhover";

		}

		sfEls[i].onmouseout=function() {

			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");

		}

	}

}

if (window.attachEvent) window.attachEvent("onload", sfHover);



ShowCurrent = function()

{

	document.getElementById("2008").style.display = "block";

	document.getElementById("archive").style.display = "none";

}



ShowArchive = function()

{

        document.getElementById("archive").style.display = "block";

        document.getElementById("2008").style.display = "none";

}




