<!--
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";
        design_on = new Image(); design_on.src = "../images/buttons/design_on.gif";
        design_off = new Image(); design_off.src = "../images/buttons/design_off.gif";
        gallery_on = new Image(); gallery_on.src = "../images/buttons/gallery_on.gif";
        gallery_off = new Image(); gallery_off.src = "../images/buttons/gallery_off.gif";
        marketing_on = new Image(); marketing_on.src = "../images/buttons/marketing_on.gif";
        marketing_off = new Image(); marketing_off.src = "../images/buttons/marketing_off.gif";
        hosting_on = new Image(); hosting_on.src = "../images/buttons/hosting_on.gif";
        hosting_off = new Image(); hosting_off.src = "../images/buttons/hosting_off.gif";
        dnr_on = new Image(); dnr_on.src = "../images/buttons/dnr_on.gif";
        dnr_off = new Image(); dnr_off.src = "../images/buttons/dnr_off.gif";
        software_on = new Image(); software_on.src = "../images/buttons/software_on.gif";
        software_off = new Image(); software_off.src = "../images/buttons/software_off.gif";
        links_on = new Image(); links_on.src = "../images/buttons/links_on.gif";
        links_off = new Image(); links_off.src = "../images/buttons/links_off.gif";
        quote_on = new Image(); quote_on.src = "../images/buttons/quote_on.gif";
        quote_off = new Image(); quote_off.src = "../images/buttons/quote_off.gif";
        policies_on = new Image(); policies_on.src = "../images/buttons/policies_on.gif";
        policies_off = new Image(); policies_off.src = "../images/buttons/policies_off.gif";
        about_on = new Image(); about_on.src = "../images/buttons/about_on.gif";
        about_off = new Image(); about_off.src = "../images/buttons/about_off.gif";
        contact_on = new Image(); contact_on.src = "../images/buttons/contact_on.gif";
        contact_off = new Image(); contact_off.src = "../images/buttons/contact_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");
                }
        }
      //-->

