<!--

        if (document.images) {            // Active Images

            img_hmoff = new Image(); 

            img_hmoff.src = "images/solhome1.gif"; 

            img_hmon = new Image();      

            img_hmon.src = "images/solhome2.gif";

            img_auoff = new Image(); 

            img_auoff.src = "images/solabout1.gif"; 

            img_auon = new Image();      

            img_auon.src = "images/solabout2.gif";

            img_wnoff = new Image(); 

            img_wnoff.src = "images/solnew1.gif"; 

            img_wnon = new Image();      

            img_wnon.src = "images/solnew2.gif";

            img_ptoff = new Image(); 

            img_ptoff.src = "images/solpatterns1.gif"; 

            img_pton = new Image();      

            img_pton.src = "images/solpatterns2.gif";

            img_oroff = new Image(); 

            img_oroff.src = "images/orderinfo.gif"; 

            img_oron = new Image();      

            img_oron.src = "images/orderinfo_over.gif"; 

            img_lsoff = new Image(); 

            img_lsoff.src = "images/sollinks1.gif"; 

            img_lson = new Image();      

            img_lson.src = "images/sollinks2.gif";

        }

// Function to 'activate' images.

function imgOn(imgName) {

        if (document.images) {

            document[imgName].src = eval(imgName + "on.src");

        }

}

         

// Function to 'deactivate' images.        

function imgOff(imgName) {

        if (document.images) {

            document[imgName].src = eval(imgName + "off.src");

        }

}

// -->