/* ### INITIALIZE ### */

/* var iCurrent = 0; */

var aBackground = new Array(
	"/template/img/bg01.jpg",
	"/template/img/bg02.jpg",
	"/template/img/bg03.jpg",
	"/template/img/bg04.jpg",
	"/template/img/bg05.jpg",
	"/template/img/bgNew2.jpg",
	"/template/img/bgNew1.jpg",
	"/template/img/bgNew4.jpg",
	"/template/img/bg09.jpg",
	"/template/img/bgNew1.jpg",
	"/template/img/bg11.jpg",
	"/template/img/bgNew3.jpg",
	"/template/img/bgNew2.jpg",
	"/template/img/bg14.jpg"
);

var aBackgroundRecentie = new Array(
	"/template/img/bg01.jpg",
	"/template/img/bg02.jpg",
	"/template/img/bg03.jpg",
	"/template/img/bg04.jpg",
	"/template/img/bg05.jpg",
	"/template/img/bgNew1.jpg",
    "/template/img/bgNew5.jpg",
    "/template/img/bgNew6.jpg",
    "/template/img/bgNew7.jpg",
    "/template/img/bgNew8.jpg",
    "/template/img/bgNew9.jpg",
    "/template/img/bgNew10.jpg",
    "/template/img/bgNew11.jpg",
    "/template/img/bgNew12.jpg",
    "/template/img/bgNew13.jpg",
    "/template/img/bgNew14.jpg"
);

var ary = aBackground;
/* ###  TOGGLE ON/OFF ### */

function toggleOn(name) {
	var name;
	document.getElementById(name).style.display = "block";
}

function toggleOff(name) {
	var name;
	document.getElementById(name).style.display = "none";
}

/* ### SHOW/HIDE TEXT ### */

function setBackground() {
	document.getElementById("content").style.backgroundImage = "url('" + ary[iCurrent] + "')";
}
	
function setNext() {
	iCurrent = ( iCurrent + 1 ) % ary.length;
	setBackground();
}
	
function setPrevious() {
	iCurrent = ( iCurrent - 1 + ary.length ) % ary.length;
	setBackground();
}

/* ### MOUSE OVER ### */

function setMouseOverState(picId,picName) {
	var picName,picId;
	document.getElementById(picId).src = "/template/img/" + picName + "Act.gif";
}

function setMouseOutState(picId,picName) {
	var picName,picId;
	document.getElementById(picId).src = "/template/img/" + picName + ".gif";
}
