var photos = new Array();
var text = new Array();
var photosBig = new Array();
var colours = new Array();
var photoNum = 0;

function backward(){
	if (photoNum > 0){
		window.status='';
		photoNum--;
		document.images.photoslider.src = photos[photoNum];	
		document.getElementById("picDesc").innerHTML = text[photoNum];		
		document.getElementById("picColours").innerHTML = colours[photoNum];
	} else {
		photoNum = photos.length-1;
		document.images.photoslider.src = photos[photoNum];	
		document.getElementById("picDesc").innerHTML = text[photoNum];		
		document.getElementById("picColours").innerHTML = colours[photoNum];
	}
}

function forward(){
	if (photoNum < photos.length-1) {
		photoNum++;
		document.images.photoslider.src = photos[photoNum];		
		document.getElementById("picDesc").innerHTML = text[photoNum];		
		document.getElementById("picColours").innerHTML = colours[photoNum];
	}
	else {
		photoNum = 0;
		document.images.photoslider.src = photos[photoNum];		
		document.getElementById("picDesc").innerHTML = text[photoNum];		
		document.getElementById("picColours").innerHTML = colours[photoNum];
	}
}

function init() {	
	document.images.photoslider.src = photos[photoNum];	
	document.getElementById("picDesc").innerHTML = text[photoNum];	
	document.getElementById("picColours").innerHTML = colours[photoNum];
}

photos[0] = "/images/08spring/900.jpg";
photos[1] = "/images/08spring/901.jpg";
photos[2] = "/images/08spring/902_903.jpg";
photos[3] = "/images/08spring/904.jpg";
photos[4] = "/images/08spring/905_906.jpg";
photos[5] = "/images/08spring/907.jpg";
photos[6] = "/images/08spring/908.jpg";
photos[7] = "/images/08spring/909.jpg";
photos[8] = "/images/08spring/910.jpg";
photos[9] = "/images/08spring/911.jpg";
photos[10] = "/images/08spring/912.jpg";
photos[11] = "/images/08spring/913.jpg";
photos[12] = "/images/08spring/914.jpg";

text[0] = "'Swing-y' Coat (900)";
text[1] = "'Fancy' Windbreaker (901)";
text[2] = "'Adorable' Little Jacket (902)<br />'Cutie' Shorts (903)";
text[3] = "'Tighty' Pants (904)";
text[4] = "'Slimmy' Skirt (905)";
text[5] = "'Disco' Dress (907)";
text[6] = "'Disco' Top (908)";
text[7] = "'Hot n' Pretty' Tee Shirt Dress";
text[8] = "'Smart n' Chic' Dress";
text[9] = "'Folksy' Dress (911)";
text[10] = "'Folksy' Top (912)";
text[11] = "'Party' Dress (913)";
text[12] = "'Party + More' Skirt (914)";

colours[0] = "Olive with Chartreuse<br />lining & buttons";
colours[1] = "Orange with Gold,<br />Light Grey with Dark Grey";
colours[2] = "Mushroom, Slate Blue";
colours[3] = "Mushroom, Slate Blue";
colours[4] = "Mushroom, Slate Blue";
colours[5] = "Nutmeg with Yellow,<br />Light Grey with Dark Grey,<br />Black with Black";
colours[6] = "Nutmeg with Yellow,<br />Light Grey with Dark Grey,<br />Black with Black";
colours[7] = "Nutmeg with Yellow,<br />Light Grey with Dark Grey,<br />Black with Black";
colours[8] = "Slate Blue, Poppy Red,<br />Natural with Metallic Sheen";
colours[9] = "White with Black Tulips,<br />Light Grey with Yellow Petals";
colours[10] = "White with Black Tulips,<br />Light Grey with Yellow Petals";
colours[11] = "Cream with Black Contrast,<br />Natural with Olive Contrast,<br />Poppy Red";
colours[12] = "Cream with Black Contrast,<br />Natural with Olive Contrast,<br />Poppy Red";

