var games = new Array();
var gameIndex = 0; 

games[gameIndex++] = ['BSP', 'img/slideshow/BSP.jpg'];
games[gameIndex++] = ['BSP', 'img/slideshow/BSP2.jpg'];
games[gameIndex++] = ['GEN', 'img/slideshow/GEN.jpg'];
games[gameIndex++] = ['GEN', 'img/slideshow/GEN2.jpg'];
games[gameIndex++] = ['RKG', 'img/slideshow/RKG.jpg'];
games[gameIndex++] = ['RKG', 'img/slideshow/RKG2.jpg'];
games[gameIndex++] = ['GVC', 'img/slideshow/GVC.jpg'];
games[gameIndex++] = ['GVC', 'img/slideshow/GVC2.jpg'];
games[gameIndex++] = ['JOB', 'img/slideshow/JOB.jpg'];
games[gameIndex++] = ['JOB', 'img/slideshow/JOB2.jpg'];
games[gameIndex++] = ['BBE', 'img/slideshow/BBE.jpg'];
games[gameIndex++] = ['BBE', 'img/slideshow/BBE2.jpg'];
games[gameIndex++] = ['CRS', 'img/slideshow/CRS.jpg'];
games[gameIndex++] = ['CRS', 'img/slideshow/CRS2.jpg'];
games[gameIndex++] = ['CSG', 'img/slideshow/CSG.jpg'];
games[gameIndex++] = ['CSG', 'img/slideshow/CSG2.jpg'];
games[gameIndex++] = ['DFP', 'img/slideshow/DFP.jpg'];
games[gameIndex++] = ['DFP', 'img/slideshow/DFP2.jpg'];
games[gameIndex++] = ['ELG', 'img/slideshow/ELG.jpg'];
games[gameIndex++] = ['ELG', 'img/slideshow/ELG2.jpg'];
games[gameIndex++] = ['EYN', 'img/slideshow/EYN.jpg'];
games[gameIndex++] = ['EYN', 'img/slideshow/EYN2.jpg'];
games[gameIndex++] = ['FST', 'img/slideshow/FST.jpg'];
games[gameIndex++] = ['FST', 'img/slideshow/FST2.jpg'];
games[gameIndex++] = ['GFN', 'img/slideshow/GFN.jpg'];
games[gameIndex++] = ['GFN', 'img/slideshow/GFN2.jpg'];
games[gameIndex++] = ['HEA', 'img/slideshow/HEA.jpg'];
games[gameIndex++] = ['HEA', 'img/slideshow/HEA2.jpg'];
games[gameIndex++] = ['HNS', 'img/slideshow/HNS.jpg'];
games[gameIndex++] = ['HNS', 'img/slideshow/HNS2.jpg'];
games[gameIndex++] = ['KIR', 'img/slideshow/KIR.jpg'];
games[gameIndex++] = ['KIR', 'img/slideshow/KIR2.jpg'];
games[gameIndex++] = ['KOT', 'img/slideshow/KOT.jpg'];
games[gameIndex++] = ['KOT', 'img/slideshow/KOT2.jpg'];
games[gameIndex++] = ['KSH', 'img/slideshow/KSH.jpg'];
games[gameIndex++] = ['KSH', 'img/slideshow/KSH2.jpg'];
games[gameIndex++] = ['LLG', 'img/slideshow/LLG.jpg'];
games[gameIndex++] = ['LLG', 'img/slideshow/LLG2.jpg'];
games[gameIndex++] = ['LMY', 'img/slideshow/LMY.jpg'];
games[gameIndex++] = ['LMY', 'img/slideshow/LMY2.jpg'];
games[gameIndex++] = ['MCS', 'img/slideshow/MCS.jpg'];
games[gameIndex++] = ['MCS', 'img/slideshow/MCS2.jpg'];
games[gameIndex++] = ['MHM', 'img/slideshow/MHM.jpg'];
games[gameIndex++] = ['MHM', 'img/slideshow/MHM2.jpg'];
games[gameIndex++] = ['MMY', 'img/slideshow/MMY.jpg'];
games[gameIndex++] = ['MMY', 'img/slideshow/MMY2.jpg'];
games[gameIndex++] = ['ODL', 'img/slideshow/ODL.jpg'];
games[gameIndex++] = ['ODL', 'img/slideshow/ODL2.jpg'];
games[gameIndex++] = ['OPL', 'img/slideshow/OPL.jpg'];
games[gameIndex++] = ['OPL', 'img/slideshow/OPL2.jpg'];
games[gameIndex++] = ['PBB', 'img/slideshow/PBB.jpg'];
games[gameIndex++] = ['PBB', 'img/slideshow/PBB2.jpg'];
games[gameIndex++] = ['PRC', 'img/slideshow/PRC.jpg'];
games[gameIndex++] = ['PRC', 'img/slideshow/PRC2.jpg'];
games[gameIndex++] = ['SDZ', 'img/slideshow/SDZ.jpg'];
games[gameIndex++] = ['SDZ', 'img/slideshow/SDZ2.jpg'];
games[gameIndex++] = ['SWD', 'img/slideshow/SWD.jpg'];
games[gameIndex++] = ['SWD', 'img/slideshow/SWD2.jpg'];
games[gameIndex++] = ['TFB', 'img/slideshow/TFB.jpg'];
games[gameIndex++] = ['TFB', 'img/slideshow/TFB2.jpg'];
games[gameIndex++] = ['TKL', 'img/slideshow/TKL.jpg'];
games[gameIndex++] = ['TKL', 'img/slideshow/TKL2.jpg'];
games[gameIndex++] = ['CBJ', 'img/slideshow/CBJ.jpg'];
games[gameIndex++] = ['CBJ', 'img/slideshow/CBJ2.jpg'];

function getNextGame() {
	var index = (gameIndex) % games.length;
	gameIndex++;
	return games[index];
}

function changeGame() {
	var game = getNextGame();

	document.getElementById('games').style.background='url(' +  game[1]+ ') 31px 6px no-repeat';

	var callback = "changeGame()";
	var timerID = setTimeout(callback, 3500);
}

