
var imageList = new Array(
'_MG_1430.jpg',
'_MG_1437.jpg',
'_MG_1445.jpg',
'_MG_1446.jpg',
'_MG_1450.jpg',
'_MG_1451.jpg',
'_MG_1459.jpg',
'_MG_1475.jpg',
'_MG_1483.jpg',
'_MG_1491.jpg',
'_MG_1502.jpg',
'_MG_1508.jpg',
'_MG_1542.jpg',
'_MG_1543.jpg',
'_MG_1545.jpg',
'_MG_1546.jpg',
'_MG_1548.jpg',
'_MG_1549.jpg',
'_MG_1550.jpg',
'_MG_1552.jpg',
'_MG_1557.jpg',
'_MG_1562.jpg',
'_MG_1566.jpg',
'_MG_1568.jpg',
'_MG_1587.jpg',
'_MG_1598.jpg',
'_MG_1599.jpg',
'_MG_1600.jpg',
'_MG_1602.jpg',
'_MG_1654.jpg',
'_MG_1934.jpg'
);

var nImages = imageList.length;
var listIndex = 0;

function loadImage()
{
	var fileName = imageList[listIndex];
  var path = '/images/event2009/' + fileName;
  
	if (++listIndex == nImages)
		listIndex = 0;
  
	var nextIndex = 1 - currentIndex;
  galleryImage[nextIndex].src = path;
  galleryImage[nextIndex].alt = 'Photo by Dexter Lane';
}
