var value=new Array(14);
value[0]= "/gallery/css/img60.jpg";
value[1]= "/gallery/css/img61.jpg";
value[2]= "/gallery/css/img62.jpg";
value[3]= "/gallery/css/img63.jpg";
value[4]= "/gallery/css/img64.jpg";
value[5]= "/gallery/css/img65.jpg";
value[6]= "/gallery/css/img66.jpg";
value[7]= "/gallery/css/img67.jpg";
value[8]= "/gallery/css/img68.jpg";
value[9]= "/gallery/css/img69.jpg";
value[10]= "/gallery/css/img70.jpg";
value[11]= "/gallery/css/img71.jpg";
value[12]= "/gallery/css/img72.jpg";
value[13]= "/gallery/css/img73.jpg";
value[14]= "/gallery/css/img74.jpg";


var text=new Array(14);
text[0]="Slide 1";
text[1]="Slide 2";
text[2]="Slide 3";
text[3]="Slide 4";
text[4]="Slide 5";
text[5]="Slide 6";
text[6]="Slide 7";
text[7]="Slide 8";
text[8]="Slide 9";
text[9]="Slide 10";
text[10]="Slide 11";
text[11]="Slide 12";
text[12]="Slide 13";
text[13]="Slide 14";

function initSlideShow() {
	// create option
	var select=document.getElementById("picture");
 	for (var i=0;i<text.length;i++) {
		var option=document.createElement('option');
  		option.text=text[i];
		option.value=value[i];
	  	try {
    			select.add(option,null);	// W3C compliant
		} catch(ex) {
    			select.add(option);		// IE  compliant
			}
		}
	// select event
	select.onchange=function() {
		document.images.pictures.src=document.mygallery.picture.options[document.mygallery.picture.selectedIndex].value;
		};
	// backward event
	document.getElementById("backward").onclick=function() {
		if((document.mygallery.picture.selectedIndex-1)<0)
			document.mygallery.picture.selectedIndex=document.mygallery.picture.length-1;
			else document.mygallery.picture.selectedIndex=document.mygallery.picture.selectedIndex-1;
		document.images.pictures.src=document.mygallery.picture.options[document.mygallery.picture.selectedIndex].value;
		};
	// forward  event
	document.getElementById("forward").onclick=function() {
		if((document.mygallery.picture.selectedIndex+1)>=document.mygallery.picture.length)
			document.mygallery.picture.selectedIndex=0;
			else document.mygallery.picture.selectedIndex=document.mygallery.picture.selectedIndex+1;
		document.images.pictures.src=document.mygallery.picture.options[document.mygallery.picture.selectedIndex].value;
		};
	}

initSlideShow();

