// JavaScript Document
	var imgs = new Array();
	imgs[0] = 'map.png';
	imgs[1] = 'map_winnipeg.png';
	imgs[2] = 'map_brandon.png';
	imgs[3] = 'map_weyburn.png';
	imgs[4] = 'map_mooseJaw.png';
	imgs[5] = 'map_swiftCurrent.png';
	imgs[6] = 'map_lethbridge.png';
	imgs[7] = 'map_trochu.png';
	imgs[8] = 'map_kindersley.png';
	imgs[9] = 'map_saskatoon.png';
	imgs[10] = 'map_raymore.png';
	imgs[11] = 'map_yorkton.png';
	imgs[12] = 'map_melfort.png';
	imgs[13] = 'map_northBattleford.png';
	imgs[14] = 'map_vermillion.png';
	imgs[15] = 'map_edmonton.png';
	imgs[16] = 'map_peace.png';
	var labels = new Array();
	labels[0] = '&nbsp;';
	labels[1] = 'Winnipeg';
	labels[2] = 'Brandon';
	labels[3] = 'Weyburn';
	labels[4] = 'Moose Jaw';
	labels[5] = 'Swift Current';
	labels[6] = 'Lethbridge';
	labels[7] = 'Trochu';
	labels[8] = 'Kindersley';
	labels[9] = 'Saskatoon';
	labels[10] = 'Raymore';
	labels[11] = 'Yorkton';
	labels[12] = 'Melfort';
	labels[13] = 'North Battleford';
	labels[14] = 'Vermilion';
	labels[15] = 'Edmonton';
	labels[16] = 'Peace';
	
	
	
		function highlight(id){			
			document.mapImage.src ='/common/images/interface/map/'+imgs[id] ;
			document.getElementById('label').innerHTML=labels[id];
		}

