<!-- slideshow with previous

	slideimage = new Array(
 		'images/hairstyle1.jpg',
 		'images/hairstyle9.jpg',
		'images/hairstyle10.jpg',
 		'images/hairstyle5.jpg',
 		'images/hairstyle2.jpg',
		'images/hairstyle11.jpg',
		'images/hairstyle12.jpg',
 		'images/hairstyle3.jpg',
 		'images/hairstyle4.jpg',
		'images/hairstyle13.jpg',
		'images/hairstyle14.jpg',
		'images/hairstyle15.jpg',
 		'images/hairstyle6.jpg',
 		'images/hairstyle7.jpg',
 		'images/hairstyle8.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);
  }
//-->