	
var imgList = new Array(


	{src: 'images/garda2_web500.jpg', title: '<br />Untitled, 2006', desc: '35mm photo'}



	,{src: 'images/sl_07_web.jpg', title: '<br />Untitled, 2006', desc: '35mm photo'}


	,{src: 'images/nwweb02.jpg', title: '<br />NatWest, 2008', desc: 'Video still'}
	,{src: 'images/nwweb05.jpg', title: '<br />NatWest, 2008', desc: 'Video still'}



	,{src: 'images/gls05.jpg', title: '<br />Untitled, 2006', desc: 'Video still'}

	,{src: 'images/kammersl.jpg', title: '<br />Untitled, 2006', desc: 'Digital image'}


	
	,{src: 'images/tanza3.jpg', title: '<br />Untitled, 2006', desc: 'Digital image'}
	
	
	,{src: 'images/1508062001.jpg', title: '<br />Untitled, 2006', desc: 'Digital image'}
	,{src: 'images/1506061703.jpg', title: '<br />Untitled, 2006', desc: 'Digital image'}


	,{src: 'images/nordhavn1.jpg', title: '<br />Untitled, 2007', desc: 'Digital image'}


	,{src: 'images/unk01.jpg', title: '<br />Untitled, 2006', desc: 'Digital image'}

	,{src: 'images/cf5.jpg', title: '<br />Untitled, 2006', desc: '35mm photo'}
	,{src: 'images/0209060128.jpg', title: '<br />Untitled, 2006', desc: 'Digital image'}
	,{src: 'images/3587web.jpg', title: '<br />Untitled, 2008', desc: 'Digital image'}




	,{src: 'images/ll03web.jpg', title: '<br />Untitled, 2008', desc: 'Digital image'}
	,{src: 'images/ll02web.jpg', title: '<br />Untitled, 2008', desc: 'Digital image'}

	,{src: 'images/rs23w.jpg', title: '<br />Untitled, 2008', desc: 'Mobile phone video still'}
	,{src: 'images/rs14w.jpg', title: '<br />Untitled, 2008', desc: 'Mobile phone video still'}

		,{src: 'images/rs44w.jpg', title: '<br />Untitled, 2008', desc: 'Mobile phone video still'}


	,{src: 'images/rs59w.jpg', title: '<br />Untitled, 2008', desc: 'Mobile phone video still'}
	
	


		,{src: 'images/rs53w.jpg', title: '<br />Untitled, 2008', desc: 'Mobile phone video still'}


	
	

	,{src: 'images/rs52w.jpg', title: '<br />Untitled, 2008', desc: 'Mobile phone video still'}

	
	,{src: 'images/shell01.jpg', title: '<br />Untitled, 2005', desc: '35mm photo'}

	
	
	


	,{src: 'images/sort02.jpg', title: '<br />Untitled, 2008', desc: 'Digital image'}




	
	,{src: 'images/sort58.jpg', title: '<br />Untitled, 2008', desc: 'Digital image'}
	,{src: 'images/ll01web.jpg', title: '<br />Untitled, 2008', desc: 'Digital image'}
	
	
	,{src: 'images/s8_08web.jpg', title: '<br />Untitled, 2007', desc: 'Film still'}
	,{src: 'images/farve01.jpg', title: '<br />Untitled, 2008', desc: 'Digital image'}

	,{src: 'images/s8_09.jpg', title: '<br />Untitled, 2007', desc: 'Film still'}
	
	
	

	,{src: 'images/blank.jpg', title: '<br />Untitled, 2007', desc: 'Digital image'}


	,{src: 'images/motiv500.jpg', title: '<br />Untitled, 2005', desc: '35mm photo'}

	,{src: 'images/par_t.jpg', title: '<br />Untitled, 2007', desc: '35mm photo'}

	,{src: 'images/s8_12.jpg', title: '<br />Untitled, 2007', desc: 'Film still'}




	
);

var imgIndex = 0;

function swapImage(direction) {
	imgIndex += direction; 
	if (imgIndex >= imgList.length) imgIndex = 0; 
	if (imgIndex < 0) imgIndex = imgList.length - 1; 

	if (img = document.getElementById('imgMain')) {
		img.src = imgList[imgIndex].src;
	}
	if (title = document.getElementById('imgTitle')) {
		title.innerHTML = imgList[imgIndex].title;
	}
	if (desc = document.getElementById('imgDesc')) {
		desc.innerHTML = imgList[imgIndex].desc;
	}
}
