// Add all onLoad and Init Functions In This File

try{
	document.execCommand('BackgroundImageCache', false, true); 
}
catch(e) {}

sfHover = function() {
	var nav = document.getElementById('nav-product');
	if (nav) {
		var lis = nav.getElementsByTagName('li');
		for (var i = 0, j = lis.length; i < j; i++) {
			lis[i].onmouseover=function() { this.className+=" sfhover"; }
			lis[i].onmouseout=function() { this.className=this.className.replace(new RegExp(" sfhover\\b"), ""); }
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

/*Start SC Click to Enlarge v3.0.0 init function calls*/
var scMultiMain = false;
scImgEnlargeInit();
window.onresize = function() {
	scWinResize();
}
/*End SC Click to Enlarge v3.0.0 init calls*/

