
<!--
var photolist = new Array (
'http://www.parisconnection.fr/images/banner_photo.jpg',
'http://www.parisconnection.fr/images/banner_photo_arc.jpg',
'http://www.parisconnection.fr/images/banner_photo_cityhall.jpg',
'http://www.parisconnection.fr/images/banner_photo_books.jpg',
'http://www.parisconnection.fr/images/banner_photo_wildflowers.jpg',
'http://www.parisconnection.fr/images/banner_photo_pie.jpg',
'http://www.parisconnection.fr/images/banner_photo_fish.jpg',
'http://www.parisconnection.fr/images/banner_photo_wine.jpg',
'http://www.parisconnection.fr/images/banner_photo_fountain.jpg' //NO COMMA ON THE LAST ONE PLEASE
)
var numofphotos=(photolist.length);
var currentphoto=0;
var i=0;
var howfast=5*1000; //interval in milliseconds (however many seconds * 1000)

function swapthephoto()
{
//Code by Ray Villalobos.
if (document.images)
{
if (currentphoto<numofphotos-1) currentphoto++;
else currentphoto=0;
document.thephoto.src=photolist[currentphoto];

setTimeout('swapthephoto()',howfast);
}
}

setTimeout('swapthephoto()',howfast)
// -->





