var which=1
var photos=new Array();
var num_img=new Array();
var desc=new Array();

photos[0]="12000019/pr_12000019.jpg";
num_img[0] = "image 1 / ";
total = " 1";

photos[1]="12000019/2_12000019.jpg";
num_img[1] = "image 2 / ";
total = " 2";

photos[2]="12000019/3_12000019.jpg";
num_img[2] = "image 3 / ";
total = " 3";

photos[3]="12000019/4_12000019.jpg";
num_img[3] = "image 4 / ";
total = " 4";

photos[4]="12000019/5_12000019.jpg";
num_img[4] = "image 5 / ";
total = " 5";

function backward(){
if (which>0){
window.status=''
which--
document.images.photoslider.src=photos[which];
document.getElementById('num_ch').innerHTML =num_img[which]+' '+total;
}
}

function forward(){
if (which<photos.length-1){
which++
document.images.photoslider.src=photos[which];
document.getElementById('num_ch').innerHTML =num_img[which]+' '+total;

}
}
