var maps = new Array();

maps[0] = new Image();
maps[0].src = '../gfx/scot.gif';

maps[1] = new Image();
maps[1].src = '../gfx/scot1.gif';

maps[2] = new Image();
maps[2].src = '../gfx/scot2.gif';

maps[3] = new Image();
maps[3].src = '../gfx/scot3.gif';

maps[4] = new Image();
maps[4].src = '../gfx/scot4.gif';

	function setmapshow(index)
	{
		var picBeingShown = document.getElementById("scotmap");
		picBeingShown.src = maps[index].src;
	}

	function showfirstmap()
	{

		setmapshow(0);
	}

