/******************************
*	homeimg.js
*	Philip Prohm
*	1-7-2000
*
*******************************
*/

function img_0(img_name) { document.images[img_name].src=eval(img_name+'_0.src'); }
function img_1(img_name) { document.images[img_name].src=eval(img_name+'_1.src'); }

function randomimage()
{
	//randidx=Math.floor(Math.random()*randimgs.length)
	randidx++
	if(randidx>=randimgs.length) randidx=0
	document.images.homeimg.src="images/homeimg"+randimgs[randidx]+".jpg"
	setTimeout("randomimage()", 2000)
}

var randidx
randimg=new Image()
randimgs=new Array()
randimgs[ 0]="01"
randimgs[ 1]="02"
randimgs[ 2]="03"
randimgs[ 3]="04"
randimgs[ 4]="05"
randimgs[ 5]="06"
randimgs[ 6]="07"
randimgs[ 7]="08"
randimgs[ 8]="09"
randimgs[ 9]="10"
randimgs[10]="11"
randimgs[11]="12"
randimgs[12]="13"
randimgs[13]="14"

//randidx=Math.floor(Math.random()*randimgs.length)
randidx=0
randimg.src="images/homeimg"+randimgs[randidx]+".jpg"
document.writeln('<img name="homeimg" src="' + randimg.src + '" alt="La B&acirc;tisse" width="280" height="185" />')

setTimeout("randomimage()", 2000)
