// JavaScript Document

//<![CDATA[

function sponsorChange() {

	if ( index < sponsors.length - 1 ) index++;
	else index = 0;
	
	var img = document.getElementById( 'sponsor_img' );

	img.src  = "images/sponsors/" + sponsors[index][0];

}

var sponsors = [
	[ "boubee.gif" ],
	[ "carlei.gif" ],
	[ "enclave.gif" ],
	[ "kahurangi.gif" ],
	[ "lagunilla.gif" ],
	[ "manent.gif" ],
	[ "moreau.gif" ],
	[ "quady.gif" ]
];

index = Math.floor( Math.random() * sponsors.length );
document.write( "<img id=\"sponsor_img\" src=\"images/sponsors/" + sponsors[index][0] + "\" alt=\"\" />" );
setInterval( "sponsorChange()", 3000 );

//]]>

