
var bannerImage = new Array();
var bannerLink = new Array();
var tijd = new Array();

var myCount=0;

var width = 207;
var height = 194;
var tussenTijd = 1000;
var transPixLocatie = "/fr/common/images/spacer_trans_1x1.gif"

bannerLink[0] = "http://agences.jobs.fortisbanque.be";
bannerLink[1] = "";
bannerLink[2] = "http://contactcentre.jobs.fortisbanque.be";
bannerLink[3] = "";
bannerLink[2] = "http://www.fortisbank.com/fr/1200_talents/contact_centre.asp";
bannerLink[3] = "";

bannerImage[0] = '<IMG SRC="/fr/carriere/images/banner_carreer_agence_fr.gif" 	alt="Job Days" 			border="0" width="'+width+'" height="'+height+'">';
bannerImage[1] = '<IMG SRC="'+transPixLocatie+'" 							 							border="0" width="'+width+'" height="'+height+'">'
bannerImage[2] = '<IMG SRC="/fr/carriere/images/banner_carreer_ccb_fr.gif" 	  	alt="Contact Centre" 	border="0" width="'+width+'" height="'+height+'">';
bannerImage[3] = '<IMG SRC="'+transPixLocatie+'" 														border="0" width="'+width+'" height="'+height+'">'
bannerImage[4] = '<IMG SRC="/fr/carriere/images/hr-here-fr.jpg" 	  	alt="Votre carrière commence ici" 	border="0" width="'+width+'" height="'+height+'">';
bannerImage[5] = '<IMG SRC="'+transPixLocatie+'" 														border="0" width="'+width+'" height="'+height+'">'

/*if (navigator.appName == "Netscape") {
//	alert("You're using a Netscape browser.");
	tussenTijd = 1000;
	tijd[0] = 11200;
	tijd[1] = tussenTijd;
	tijd[2] = 11200; 
	tijd[3] = tussenTijd;
}
else if(navigator.appName == "Microsoft Internet Explorer" || true) 
{*/
//	alert("You're using the Internet Explorer browser.");
	tussenTijd = 1000;
	tijd[0] = 11200; 
	tijd[1] = tussenTijd;
	tijd[2] = 11200; 
	tijd[3] = tussenTijd;
	tijd[4] = 11200; 
	tijd[5] = tussenTijd;	
//}


function bannerRotate() 
{
	if(myCount > bannerImage.length-1)
	{
		myCount=0;
	}
	
	document.getElementById("divImage").href 		= bannerLink[myCount];
	document.getElementById("divImage").innerHTML	= bannerImage[myCount];
	
	setTimeout("bannerRotate()", tijd[myCount]);
	myCount++;
}

