// JavaScript Document
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);

function light_brown_style()
{
document.getElementById("container").className="light_brown_style";
}
function homepage_style()
{
document.getElementById("container").className="homepage_style";
}
function light_purple_style()
{
document.getElementById("container").className="light_purple_style";
}
function light_pink_style()
{
document.getElementById("container").className="light_pink_style";
}
function light_blue_style()
{
document.getElementById("container").className="light_blue_style";
}
function bright_blue_style()
{
document.getElementById("container").className="bright_blue_style";
}
function light_green_style()
{
document.getElementById("container").className="light_green_style";
}
function light_orange_style()
{
document.getElementById("container").className="light_orange_style";
}





































