<!--
var js = 1.0;

Version = parseInt(navigator.appVersion);

if (navigator.appName == "Netscape")
    js = ((Version >= 4) ? 1.2 : ( (Version == 3) ? 1.1 : 1.0 ));
else
    if (navigator.appVersion.indexOf('MSIE') != -1) 
        js = ((Version >= 4) ? 1.1 : 1.0);

function changeImages(oldImage,newImage) {
    if (js > 1.0) document [oldImage].src = eval(newImage + ".src");
}

if (js > 1.0) {
    a1 = new Image();
    a1.src  = "images/1.gif";
    a2 = new Image();
    a2.src  = "images/2.gif";
    a3 = new Image();
    a3.src  = "images/3.gif";
    a4 = new Image();
	a4.src  = "images/4.gif";
    a5 = new Image();
    a5.src  = "images/5.gif";	

	
}

function changeImages2(oldImage,newImage) {
    if (js > 1.0) document [oldImage].src = eval(newImage + ".src");
}

if (js > 1.0) {
    a1 = new Image();
    a1.src  = "img2/1.gif";
    a2 = new Image();
    a2.src  = "img2/2.gif";
    a3 = new Image();
    a3.src  = "img2/3.gif";
    a4 = new Image();
	a4.src  = "img2/4.gif";
    a5 = new Image();
    a5.src  = "img2/5.gif";	

	
}
//-->