	
var imgList = new Array(

	 {src: 'images/box01.jpg', title: '<br />Frostbox, 2007', desc: '2 video projections onto dairy-frosted perspex and mirror'}
	,{src: 'images/box02.jpg', title: '<br />Frostbox, 2007', desc: '2 video projections onto dairy-frosted perspex and mirror'}
	,{src: 'images/box03.jpg', title: '<br />Frostbox, 2007', desc: '2 video projections onto dairy-frosted perspex and mirror'}
	,{src: 'images/box04.jpg', title: '<br />Frostbox, 2007', desc: '2 video projections onto dairy-frosted perspex and mirror'}
	,{src: 'images/box05.jpg', title: '<br />Frostbox, 2007', desc: '2 video projections onto dairy-frosted perspex and mirror'}
	,{src: 'images/box06.jpg', title: '<br />Frostbox, 2007', desc: '2 video projections onto dairy-frosted perspex and mirror'}
	,{src: 'images/box07.jpg', title: '<br />Frostbox, 2007', desc: '2 video projections onto dairy-frosted perspex and mirror'}
	,{src: 'images/box08_ed2_web.jpg', title: '<br />Frostbox, 2007', desc: '2 video projections onto dairy-frosted perspex and mirror'}
	,{src: 'images/box09.jpg', title: '<br />Frostbox, 2007', desc: '2 video projections onto dairy-frosted perspex and mirror'}
	,{src: 'images/box10.jpg', title: '<br />Frostbox, 2007', desc: '2 video projections onto dairy-frosted perspex and mirror'}
	,{src: 'images/box11.jpg', title: '<br />Frostbox, 2007', desc: '2 video projections onto dairy-frosted perspex and mirror'}
	,{src: 'images/box12.jpg', title: '<br />Frostbox, 2007', desc: '2 video projections onto dairy-frosted perspex and mirror'}

	,{src: 'images/coop003.jpg', title: '<br />Untitled, 2006', desc: '2 video projections onto suspended tracing paper'}
	,{src: 'images/coop004.jpg', title: '<br />Untitled, 2006', desc: '2 video projections onto suspended tracing paper'}
	,{src: 'images/coop71.jpg', title: '<br />Untitled, 2006', desc: '2 video projections onto suspended tracing paper'}
	,{src: 'images/coop002.jpg', title: '<br />Untitled, 2006', desc: '2 video projections onto suspended tracing paper'}
	,{src: 'images/coop31.jpg', title: '<br />Untitled, 2006', desc: '2 video projections onto suspended tracing paper'}
	,{src: 'images/coop38.jpg', title: '<br />Untitled, 2006', desc: '2 video projections onto suspended tracing paper'}




);

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;
	}
}
