﻿
    var myImages = new Array("res/home.gif", "res/home_on.gif", "res/about.gif", "res/about_on.gif", "res/services.gif", "res/services_on", "res/browseproducts.gif", "res/browseproducts_on.gif",
    "res/customerservice.gif", "res/customerservice_on.gif", "res/news.gif", "res/news_on.gif", "res/careers.gif", "res/careers_on.gif", "res/contact-us.gif", "res/contact-us_on.gif",
	"res/solutions.gif", "res/solutions_on.gif");


    var myPreload = new Array();

    for (var i = 0; i < myImages.length; i++) {
        myPreload[i] = new Image();
        myPreload[i].src = myImages[i];
    }



    function mySwap(s) {
		
        if (s == 14) document.images.HomeBTN.src = "res/home.gif";
        if (s == 15) document.images.HomeBTN.src = "res/home_on.gif";

        if (s == 0) document.images.HomeBTN2.src = "res/about.gif";
        if (s == 1) document.images.HomeBTN2.src = "res/about_on.gif";

        if (s == 2) document.images.HomeBTN3.src = "res/services.gif";
        if (s == 3) document.images.HomeBTN3.src = "res/services_on.gif";

        if (s == 4) document.images.HomeBTN4.src = "res/browseproducts.gif";
        if (s == 5) document.images.HomeBTN4.src = "res/browseproducts_on.gif";

        if (s == 6) document.images.HomeBTN5.src = "res/customerservice.gif";
        if (s == 7) document.images.HomeBTN5.src = "res/customerservice_on.gif";

        if (s == 8) document.images.HomeBTN6.src = "res/news.gif";
        if (s == 9) document.images.HomeBTN6.src = "res/news_on.gif";

        if (s == 10) document.images.HomeBTN7.src = "res/careers.gif";
        if (s == 11) document.images.HomeBTN7.src = "res/careers_on.gif";

        if (s == 12) document.images.HomeBTN8.src = "res/contact-us.gif";
        if (s == 13) document.images.HomeBTN8.src = "res/contact-us_on.gif";
		
		if (s == 16) document.images.HomeBTN9.src = "res/solutions.gif";
        if (s == 17) document.images.HomeBTN9.src = "res/solutions_on.gif";


    } 
 