﻿// JScript File

var ImgAry=['images/map/plain.png','images/map/red-1.png','images/map/red-2.png','images/map/red-3.png','images/map/red-4.png','images/map/red-5.png','images/map/red-6.png','images/map/red-7.png','images/map/red-8.png','images/map/red-9.png','images/map/red-10.png','images/map/red-11.png','images/map/red-12.png','images/map/red-13.png','images/map/red-14.png','images/map/red-15.png','images/map/red-16.png','images/map/red-17.png','images/map/red-18.png','images/map/red-19.png','images/map/red-20.png','images/map/red-21.png']

	var MapAry=[];
	 for (var x=0;x<ImgAry.length;x++){
	  MapAry[x]=new Image();
	  MapAry[x].src=ImgAry[x];
	 }

	function Swap(id,num){
	//alert('swap');
	 document.getElementById(id).src=MapAry[num].src;
	}

	function submit(value) {
		//alert(value);
	}
	
	
