<!--
        isGoodBrowser = (navigator.appName == "Netscape" && parseInt(navigator.appVersion) >= 3) || ((navigator.appName.indexOf("Explorer") > -1) && parseInt(navigator.appVersion) >= 4);
        IMGBASE = "images/"
        IMGLOADED=false;
        
        if (isGoodBrowser)
        {
                iar=new Array();
                c_im=new Image();
                iar['home']= new Image(); iar['home'].src=IMGBASE + "visual-home.gif";
                iar['news']= new Image(); iar['news'].src=IMGBASE + "visual-news.gif";
                iar['services']= new Image(); iar['services'].src=IMGBASE + "visual-services.gif";
                iar['about']= new Image(); iar['about'].src=IMGBASE + "visual-about.gif";
                iar['contact']= new Image(); iar['contact'].src=IMGBASE + "visual-contact.gif";
                iar['other']= new Image(); iar['other'].src=IMGBASE + "visual-other.gif";           
                iar['entertainment']= new Image(); iar['entertainment'].src=IMGBASE + "visual-entertainment.gif";

        }         
        function ion(img_name)
        {
                if (isGoodBrowser && IMGLOADED)
                {
                        document.images['visual'].src=iar[img_name].src;
                };      
        }
        function ioff()
        {
                if (isGoodBrowser && IMGLOADED)
                        document.images['visual'].src=IMGBASE + "visual-home.gif";
        }
        function galt()
        {               
                if (isGoodBrowser)
                        IMGLOADED = true;
        }
//-->
