var i = 0;
var timer = 1000;

setInterval("rotateDownloadsImage()", timer);

downloadsimageArray = new Array();
downloadsimageArray[0] = "images/downloads3.jpg";
downloadsimageArray[1] = "images/downloads2.jpg";
downloadsimageArray[2] = "images/downloads1.jpg";


/*This function is to continuesly change the image on the index page*/

function rotateDownloadsImage(){
document.getElementById("downloadsImage").src = downloadsimageArray[i];
i = i + 1;
if(i==downloadsimageArray.length){
i=0;
}
};

function ToNewColor(number){
	var menuItem = document.getElementById("menuItem" + number);
	menuItem.style.backgroundColor = "#206eae";
}

function ToOldColor(number){
	var menuItem = document.getElementById("menuItem" + number);
	menuItem.style.backgroundColor = "#e78641";
}