<!--
if (document.images) {

        home_on = new Image(); home_on.src = "../images/buttons/home_on.gif";
        home_off = new Image(); home_off.src = "../images/buttons/home_off.gif";
        trading_on = new Image(); trading_on.src = "../images/buttons/trading_on.gif";
        trading_off = new Image(); trading_off.src = "../images/buttons/trading_off.gif";
        multicharts_on = new Image(); multicharts_on.src = "../images/buttons/multicharts_on.gif";
        multicharts_off = new Image(); multicharts_off.src = "../images/buttons/multicharts_off.gif";
        eSignal_on = new Image(); eSignal_on.src = "../images/buttons/eSignal_on.gif";
        eSignal_off = new Image(); eSignal_off.src = "../images/buttons/eSignal_off.gif";
        MCFX_on = new Image(); MCFX_on.src = "../images/buttons/MCFX_on.gif";
        MCFX_off = new Image(); MCFX_off.src = "../images/buttons/MCFX_off.gif";
        tradestaion_on = new Image(); tradestation_on.src = "../images/buttons/tradestation_on.gif";
        tradestation_off = new Image(); tradestation_off.src = "../images/buttons/tradestation_off.gif";
        faq_on = new Image(); faq_on.src = "../images/buttons/faq_on.gif";
        faq_off = new Image(); faq_off.src = "../images/buttons/faq_off.gif";
        screen_on = new Image(); screen_on.src = "../images/buttons/screen_on.gif";
        screen_off = new Image(); screen_off.src = "../images/buttons/screen_off.gif";
        testimonials_on = new Image(); testimonials_on.src = "../images/buttons/testimonials_on.gif";
        testimonials_off = new Image(); testimonials_off.src = "../images/buttons/testimonials_off.gif";
	
        }

        function imgOn(imgName) {
                if (document.images) {
                        document[imgName].src = eval(imgName + "_on.src");
                }
        }

        function imgOff(imgName) {
                if (document.images) {
                        document[imgName].src = eval(imgName + "_off.src");
                }
        }
      //-->
