var index = 0;

function initPicture() {
	document.getElementById( "thePicture").src = pictureDir + picture[ index];
}

function nextPicture() {
	index = (index + 1) % picture.length;
	document.getElementById( "thePicture").src = pictureDir + picture[ index];
}

function prevPicture() {
	index = (index + picture.length - 1) % picture.length;
	document.getElementById( "thePicture").src = pictureDir + picture[ index];
}

function openSlideshow( name) {
	var w = window.open("",
		"Slideshow",
		"resizable");
	var d = w.document;
	d.writeln( "<html><head>");
	d.writeln( "<title>" + name + "</title>");
	d.writeln( '<link rel="stylesheet" type="text/css" href="style.css" />' );
	d.writeln( '<script type="text/javascript" src="' + name + "/" + name + '.js"></script>' );
	d.writeln( '<script type="text/javascript" src="slideshow.js"></script>' );
	d.writeln( '</head><body onload="initPicture()"><div id="content"><div id="logo">' );
	d.writeln( '<img class="logo" alt="eco-atelier" src="images/test.png" />' );
	d.writeln( '<p valign="top">"a clothier with a conscience"<br />designer - vanessa rea</p>' );
	d.writeln( '</div><center>' );
	d.writeln( '<img height="400px" id="thePicture" />' );
	d.writeln( '<p><form>' );
	d.writeln( '<input type="button" id="prev" value="Previous" onclick="prevPicture()" />' );
	d.writeln( '<input type="button" id="next" value="Next" onclick="nextPicture()" />' );
	d.writeln( '</form></p></center></div></body></html>' );
 	d.close();
}

