	//stats rollover images
	imgflag9on = new Image();
	imgflag9on.src="img/flags/AUS_flag.gif";
	imgflag10on = new Image();
	imgflag10on.src="img/flags/BAN_flag.gif";
	imgflag11on = new Image();
	imgflag11on.src="img/flags/GBR_flag.gif";
	imgflag12on = new Image();
	imgflag12on.src="img/flags/IND_flag.gif";
	imgflag13on = new Image();
	imgflag13on.src="img/flags/NZ_flag.gif";
	imgflag14on = new Image();
	imgflag14on.src="img/flags/PAK_flag.gif";
	imgflag15on = new Image();
	imgflag15on.src="img/flags/SA_flag.gif";
	imgflag16on = new Image();
	imgflag16on.src="img/flags/SRI_flag.gif";
	imgflag17on = new Image();
	imgflag17on.src="img/flags/WI_flag.gif";
	imgflag18on = new Image();
	imgflag18on.src="img/flags/ZIM_flag.gif";
	imgflag19on = new Image();
	imgflag19on.src="img/flags/redpointer.gif";

	imgflag9off = new Image();
	imgflag9off.src="img/flags/aus-gflag.gif";
	imgflag10off = new Image();
	imgflag10off.src="img/flags/ban-gflag.gif";
	imgflag11off = new Image();
	imgflag11off.src = "img/flags/eng-gflag.gif";
	imgflag12off = new Image();
	imgflag12off.src = "img/flags/ind-gflag.gif";
	imgflag13off = new Image();
	imgflag13off.src = "img/flags/nz-gflag.gif";
	imgflag14off = new Image();
	imgflag14off.src = "img/flags/pak-gflag.gif";
	imgflag15off = new Image();
	imgflag15off.src = "img/flags/sa-gflag.gif";
	imgflag16off = new Image();
	imgflag16off.src = "img/flags/sri-gflag.gif";
	imgflag17off = new Image();
	imgflag17off.src = "img/flags/wi-gflag.gif";
	imgflag18off = new Image();
	imgflag18off.src = "img/flags/zim-gflag.gif";
	imgflag19off = new Image();
	imgflag19off.src = "img/flags/grey_arrow.gif";

	function arrowOver(imgName) {
	}

	function arrowOff(imgName) {
	}

	function imgOn(imgName) {
     	   if (document.images) {
	            document[imgName].src = eval(imgName + "on.src");
			}
	}

	function imgOff(imgName) {
     	   if (document.images) {
	            document[imgName].src = eval(imgName + "off.src");
			}
	}