// 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 loadAllSWFs()
{
	//Home Flash
	var flashvars = false;
	var params = { 
		wmode:"transparent", 
		quality:"high" 
	};
	var attributes = {	
		id:"homeflash",
		name:"homeflash"
	};

	swfobject.embedSWF("assets/flash/home.swf", "container-flash", "970", "712", "9.0.0", "flash/expressInstall.swf", flashvars, params, attributes);
	swfobject.createCSS("#homeflash","outline:none");
}

function Maximize()
{
  window.moveTo( 0, 0 );
  window.resizeTo( window.screen.availWidth, window.screen.availHeight );
}

function showThumbnails() 
{
	document.getElementById('contentloading').style.color = '#333333'; 
	document.getElementById('gallery-thumbnails').style.display = 'visible';	
}