		var g_sliderTimerInterval = 4500;
		var g_sliderTimerIntervalLoop = 9000;
       
	   
	   
	   
		// time interval betwen slide show
        var FMS_INTERVAL = 5000;
        // animation type
        var FMS_MIX = 3; // randow slide move and fade
        var FMS_FADE = 1; // only fade effect
        var FMS_MOVE = 2; // only strip move effect
        var g_animationTypeFMS = 1;    
			

sfHover = function() {
                //var sfEls = document.getElementById("nav").getElementsByTagName("LI");
				var sfEls = document.getElementById("topnavi").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);		
