// Add all onLoad and Init Functions In This File

if (document.getElementById('scImgOverall')) {
	/*Start SC Click to Enlarge v3.0.0 init function calls*/
	var scMultiMain = true;
	scImgEnlargeInit();
	window.onresize = function() { scWinResize(); }
	/*End SC Click to Enlarge v3.0.0 init calls*/
}


/* navbar hover code for IE6 */
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);

/* background cache/flicker fix for IE6 */
try{
	document.execCommand('BackgroundImageCache', false, true); 
}
catch(e) {}

