var pause = 6000;	//Pause inden nyt billede vises. Angives i millisekunder. 
var random = false;	//Skal det første billede som vises være tilfældigt. Angiv true eller false.
var xposauto = "true" 
var target='_self';	//Hvor skal links åbnes. '_new' er nyt vindue. '_self' er samme vindue.
var img = new Array();	//Angiv billeder med filstier
// =============  billedstørrelse 400X300, højde højst 300px  ====================================
//img[0] = 'Efterår2.jpg';//C:\Documents and Settings\Benny\My Test Webs\gam-next\
//img[0] = 'gert-dmcross06a.jpg';//C:\Documents and Settings\Benny\My Test Webs\gam-next\
//img[0] = 'julebar4.gif';//C:\Documents and Settings\Benny\My Test Webs\gam-next\
//img[0] = 'nytaar015.gif';//C:\Documents and Settings\Benny\My Test Webs\gam-next\
//img[0] = 'dsc01643a.jpg';//C:\Documents and Settings\Benny\My Test Webs\gam-next\//400x300
img[0] = 'nosy neighbour.gif';//C:\Documents and Settings\Benny\My Test Webs\gam-next\
//img[0] = 'polarbears400X300.jpg';//C:\Documents and Settings\Benny\My Test Webs\gam-next\
//img[0] = 'DCP_0188.jpg';//C:\Documents and Settings\Benny\My Test Webs\gam-next\
//img[0] = 'IMG_0446-h300.jpg';//C:\Documents and Settings\Benny\My Test Webs\gam-next\
//img[0] = 'DSC01634a.jpg';//C:\Documents and Settings\Benny\My Test Webs\gam-next\
//img[1] = 'DSC01906a.jpg';//C:\Documents and Settings\Benny\My Test Webs\gam-next\
//img[0] = 'Sæsonstart2003a.jpg';//C:\Documents and Settings\Benny\My Test Webs\gam-next\
//img[0] = 'Stitched_002a.bmp';//C:\Documents and Settings\Benny\My Test Webs\gam-next\
//img[1] = 'Gert-DM-HM-2007a.jpg';//C:\Documents and Settings\Benny\My Test Webs\gam-next\
img[1] = 'Run_cat.gif';//C:\Documents and Settings\Benny\My Test Webs\gam-next\
var imgID = 0;
if (random) imgID=Math.round(Math.random()*(img.length-1));
function rotator(){
var imgString="";
if (img[imgID]) imgString = imgString + '<img src="'+img[imgID]+'" border="0">';
if (imgID==img.length-1) imgID=0; else imgID++;
document.getElementById('billeder').innerHTML=imgString;
setTimeout('rotator()',pause)
}
