var arrImg = new Array(28);

for (var i = 0; i < arrImg.length; i++)
{
   arrImg[i] = new Image;
}

arrImg[0].src = "http://walottery.com/images/winningNumbers_over.gif";
arrImg[1].src = "http://walottery.com/images/winningNumbers_off.gif";
arrImg[2].src = "http://walottery.com/images/lotteryGames_over.gif";
arrImg[3].src = "http://walottery.com/images/lotteryGames_off.gif";
arrImg[4].src = "http://walottery.com/images/publicValue_over.gif";
arrImg[5].src = "http://walottery.com/images/publicValue_off.gif";
arrImg[6].src = "http://walottery.com/images/winnersGallery_over.gif";
arrImg[7].src = "http://walottery.com/images/winnersGallery_off.gif";
arrImg[8].src = "http://walottery.com/images/pressRoom_over.gif";
arrImg[9].src = "http://walottery.com/images/pressRoom_off.gif";
arrImg[10].src = "http://walottery.com/images/aboutUs_over.gif";
arrImg[11].src = "http://walottery.com/images/aboutUS_off.gif";
arrImg[12].src = "http://walottery.com/images/logos/lotto_over.gif";
arrImg[13].src = "http://walottery.com/images/logos/lotto_off.gif";
arrImg[14].src = "http://walottery.com/images/logos/megaMillions_over.gif";
arrImg[15].src = "http://walottery.com/images/logos/megaMillions_off.gif";
arrImg[16].src = "http://walottery.com/images/logos/scratch_over.gif";
arrImg[17].src = "http://walottery.com/images/logos/scratch_off.gif";
arrImg[18].src = "http://walottery.com/images/logos/dailyGame_over.gif";
arrImg[19].src = "http://walottery.com/images/logos/dailyGame_off.gif";
arrImg[20].src = "http://walottery.com/images/logos/dailyKeno_over.gif";
arrImg[21].src = "http://walottery.com/images/logos/dailyKeno_off.gif";
arrImg[22].src = "http://walottery.com/images/logos/quinto_over.gif";
arrImg[23].src = "http://walottery.com/images/logos/quinto_off.gif";
arrImg[24].src = "http://walottery.com/images/logos/hit5_over.gif";
arrImg[25].src = "http://walottery.com/images/logos/hit5_off.gif";
arrImg[26].src = "http://walottery.com/images/logos/raffle_over.gif";
arrImg[27].src = "http://walottery.com/images/logos/raffle_off.gif";



function switchImage(imgNumber)
{
	if (document.images)
	{
		return arrImg[imgNumber].src;
	}
}
