var marqueewidth="790px"        //Specify the marquee's width (in pixels)
var speed=3		//Specify the marquee's marquee speed (larger is faster)
var marqueebgcolor=""	//configure background color:


var photoCount = 25 ; // number of photos
var imageList = new Array(photoCount);

var j=0;
for(j=0;j<=photoCount-1;j++){
imageList[j] = "photomarquee/"+j+".jpg";
}

document.write('<marquee scrollamount="'+speed+'" style="filter:alpha(opacity=90);-moz-opacity:0.1;opacity:0.9;position:absolute;width:'+marqueewidth+';background-color:'+marqueebgcolor+'" onMouseover="this.stop()" onMouseout="this.start()">')
var i=0;
for(i=0;i<=photoCount-1;i++){ 
document.write('<img src="');
document.write(imageList[i]);
document.write('" alt="" border="0" width="79" height="80">');
}
document.write('</marquee>');
