var menuList = {
	'0': {
		'id':"0",
		'icon':"",
		'img':"images/V75.jpg",
		'title':"Köp V75-tjänsten till aktuell omgång"
	},

	'1': {
		'id':"1",
		'icon':"",
		'img':"images/trio.jpg",
		'title':"Information om ToppRank"
	},

	'2': {
		'id':"2",
		'icon':"",
		'img':"images/lastweek.jpg",
		'title':"Ladda ner tidigare pdf-filer från Arkivet"
	}
}

imageList = new Object();
var i = 0;

for (var item in menuList) {
	imageList[i] = new Image();
	imageList[i].src = item.img;
	i++;
}

var currentItem = 0;

var int = setInterval('carousel()',5000);

function showMenuItem(item, loop) {
	if(!loop) {
		clearInterval(int);
	}

	var menuImg = document.getElementById('menu_img');
	var menuTxt = document.getElementById('menu_text');
	var menuItem = menuList[item];

	if (currentItem != menuItem.id) {
		menuImg.src = menuItem.img;
		menuTxt.innerHTML = menuItem.title;
		//menuTxt.className = "menu_text_" + menuItem.id; 
		currentItem = menuItem.id;
	}
}

function carousel() {
	var next = parseInt(currentItem) + 1;

	if (next % 3 == 0) {
		next = 0;
	}

	showMenuItem(next, true);
}

function loop() {
	int = setInterval('carousel()',5000);
}