<!-- RollOverButton

    nMaxItem = 4;
    NameIndex = 0;
    DefaultState = 1;

    MouseOverState = 2;
    MouseDownState = 3;
    imgCounter = 0;

    ImageList = new Array();

    bIsSupportOK = (
	((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 3 )) ||
    	((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 ))
    );
    if(bIsSupportOK) {
    }

    function AddImageToImageList(name, Default, MouseOver, MouseDown)
    {
        ImageList[imgCounter] = new Array(nMaxItem);
	    ImageList[imgCounter][NameIndex] = name;
	    ImageList[imgCounter][DefaultState] = new Image();
    	ImageList[imgCounter][DefaultState].src = Default;
	    if (MouseOver != "") {
		    ImageList[imgCounter][MouseOverState] = new Image();
    		ImageList[imgCounter][MouseOverState].src = MouseOver;
	    }
    	if (MouseDown != "") {
	    	ImageList[imgCounter][MouseDownState] = new Image();
    	    ImageList[imgCounter][MouseDownState].src = MouseDown;
	    }
    	imgCounter++;
    }

    function ReplaceImage(name, state)
    {
    	var i, j ;
    	
		if(! bIsSupportOK) {
			return ;
		}
        	
	    for (i = 0; i < imgCounter; i++) {
            if(name == ImageList[i][NameIndex]) {
                status = "found " + name;
                for(j = 0 ; j < document.images.length ; j++) {
                    if(document.images[j].name == name) {
                        status = "found ! " + name;

	    		        if ((ImageList[i][state] != null)) {
                	        document.images[j].src = ImageList[i][state].src;
                            status = "Images" + i + ", " + state + ", " + ImageList[i][state].src;
                        }
                    }
                }
    		}
	    }
    }
	function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
    // ------------
    // . First:
    // . You can copy the "AddImageToImageList(...)" script and
    // . paste it into your HTML file to compile and
    // . define your rollover button.
    // . ------------

    // ------------>


