var urlpath = "/"
var img = new Array();

img[901] = new Image();  img[901].src=urlpath + "images/menu_hom.gif";
img[902] = new Image();  img[902].src=urlpath + "images/menu_hom_.gif";
img[903] = new Image();  img[903].src=urlpath + "images/menu_lif.gif";
img[904] = new Image();  img[904].src=urlpath + "images/menu_lif_.gif";
img[905] = new Image();  img[905].src=urlpath + "images/menu_cty.gif";
img[906] = new Image();  img[906].src=urlpath + "images/menu_cty_.gif";
img[909] = new Image();  img[909].src=urlpath + "images/menu_biz.gif";
img[910] = new Image();  img[910].src=urlpath + "images/menu_biz_.gif";
img[911] = new Image();  img[911].src=urlpath + "images/menu_tor.gif";
img[912] = new Image();  img[912].src=urlpath + "images/menu_tor_.gif";
img[913] = new Image();  img[913].src=urlpath + "images/menu_ema.gif";
img[914] = new Image();  img[914].src=urlpath + "images/menu_ema_.gif";

function change_image(nam,num) {
        if(navigator.appVersion.charAt(0)>= 3) {
                document.images[nam].src = img[num].src;
        }
}



