﻿
function setTopMenu() {
    var topMenu = document.getElementById("ctl00_fwRoot_fwContent_fwMenu_uxM");
    var liList = topMenu.getElementsByTagName("li");
    if (!liList || liList.length <= 0) {
        return;
    }
    
    liList[0].className = liList[0].className + " first";
    liList[liList.length - 1].className = liList[liList.length - 1].className + " last";
}
window.onload = setTopMenu;
autoSlideImage = function(timeDelay,strItemSelector) {
    var tsec;
    var curindex = 0;
    var maxindex = 0;
    maxindex = $(strItemSelector + " .item").length;
    autochange($(strItemSelector + " .item:eq(" + curindex + ")"));
    function autochange(obj) {
        $(obj).fadeIn(800, function() {            
            tsec = setTimeout(function() {
                $(strItemSelector + " .item:eq(" + curindex + ")").fadeOut(500, function() {
                    curindex++;
                    if (curindex == maxindex) curindex = 0;
                    autochange($(strItemSelector + " .item:eq(" + curindex + ")"));
                });
            }, timeDelay);
        });
    }
};

