<!--
        if (document.images) {
        img1on = new Image();
            img1on.src ="/images/top_nav/yellow_home.gif";       // Active Images
        img2on = new Image();
            img2on.src ="/images/top_nav/yellow_about.gif";
        img3on = new Image();
            img3on.src ="/images/top_nav/yellow_client.gif";
        img4on = new Image();
            img4on.src ="/images/top_nav/yellow_contact.gif";

        img5on = new Image();
            img5on.src ="/images/bottom_nav/yellow_submit.gif";			
        img6on = new Image();
            img6on.src ="/images/bottom_nav/yellow_development.gif";
        img7on = new Image();
            img7on.src ="/images/bottom_nav/yellow_pay.gif";

        img9on = new Image();
            img9on.src ="/images/css/yellow_hosting.gif";
        img10on = new Image();
            img10on.src ="/images/css/yellow_custom.gif";
        img11on = new Image();
            img11on.src ="/images/css/yellow_email.gif";
        img12on = new Image();
            img12on.src ="/images/css/yellow_name.gif";
        img13on = new Image();
            img13on.src ="/images/css/yellow_signup.gif";
        img14on = new Image();
            img14on.src ="/images/css/yellow_faq.gif";
        img15on = new Image();
            img15on.src ="/images/css/yellow_how-to.gif";
        img16on = new Image();
            img16on.src ="/images/css/yellow_stats.gif";
        img17on = new Image();
            img17on.src ="/images/css/yellow_webmail.gif";
        img18on = new Image();
            img18on.src ="/images/css/yellow_email-admin.gif";
			

        img1off = new Image();
            img1off.src ="/images/top_nav/white_home.gif";       // Inactive Images
        img2off = new Image();
            img2off.src ="/images/top_nav/white_about.gif";
        img3off = new Image();
            img3off.src ="/images/top_nav/white_client.gif";
        img4off = new Image();
            img4off.src ="/images/top_nav/white_contact.gif";

        img5off = new Image();
            img5off.src ="/images/bottom_nav/white_submit.gif";			
        img6off = new Image();
            img6off.src ="/images/bottom_nav/white_development.gif";
        img7off = new Image();
            img7off.src ="/images/bottom_nav/white_pay.gif";

        img9off = new Image();
            img9off.src ="/images/css/white_hosting.gif";
        img10off = new Image();
            img10off.src ="/images/css/white_custom.gif";
        img11off = new Image();
            img11off.src ="/images/css/white_email.gif";
        img12off = new Image();
            img12off.src ="/images/css/white_name.gif";
        img13off = new Image();
            img13off.src ="/images/css/white_signup.gif";
        img14off = new Image();
            img14off.src ="/images/css/white_faq.gif";
        img15off = new Image();
            img15off.src ="/images/css/white_how-to.gif";
        img16off = new Image();
            img16off.src ="/images/css/white_stats.gif";
        img17off = new Image();
            img17off.src ="/images/css/white_webmail.gif";
        img18off = new Image();
            img18off.src ="/images/css/white_email-admin.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");
        }
}
// -->