<!-- slideshow with previous

	slideimage = new Array(
   		'images/hairstyle21.jpg',
		'images/hairstyle22.jpg',
		'images/hairstyle23.jpg',
		'images/hairstyle24.jpg',
		'images/hairstyle25.jpg',
		'images/hairstyle26.jpg',
		'images/hairstyle27.jpg',
		'images/hairstyle28.jpg',
		'images/hairstyle29.jpg',
		'images/hairstyle30.jpg',
		'images/hairstyle31.jpg',
		'images/hairstyle32.jpg',
		'images/hairstyle33.jpg',
 		'images/hairstyle1.jpg',
 		'images/hairstyle2.jpg',
 		'images/hairstyle3.jpg',
 		'images/hairstyle4.jpg',
 		'images/hairstyle5.jpg',
 		'images/hairstyle6.jpg',
 		'images/hairstyle7.jpg',
		'images/hairstyle8.jpg',
		'images/hairstyle9.jpg',
		'images/hairstyle10.jpg',
		'images/hairstyle11.jpg',
		'images/hairstyle12.jpg',
		'images/hairstyle13.jpg',
		'images/hairstyle14.jpg',
		'images/hairstyle16.jpg',
		'images/hairstyle17.jpg',
		'images/hairstyle18.jpg',
		'images/hairstyle19.jpg',
		'images/hairstyle20.jpg'

);

	var imageno = 0;
	var noslides = slideimage.length;
	var tid;
	var startno = 0;

  function change() {

 	if (noslides<= ++imageno) {
  		imageno = 0;
 	}

	if (document.all) {
		document.images.showimage.style.filter="blendTrans(duration=2)";
		document.images.showimage.filters.blendTrans.Apply();
	}
	
	document.images.showimage.src = slideimage[imageno];
	
	if (document.all) {
		document.images.showimage.filters.blendTrans.Play();
	}

  }

  function change_back() {

 	if (startno> --imageno) {
  		imageno = (noslides - 1);
 	}

	
	if (document.all) {
		document.images.showimage.style.filter="blendTrans(duration=3)";
		document.images.showimage.filters.blendTrans.Apply();
	}
	
	document.images.showimage.src = slideimage[imageno];
	
	if (document.all) {
		document.images.showimage.filters.blendTrans.Play();
	}

  }

  function startss() {
 	tid=setInterval('change()',5000);
  }
  function stopss() {
 	window.clearInterval(tid);
  }
//-->