<!-- // slideshow buttons
	var textnormal1		= "#EFEEF4";
	var textactive1		= "#EFEEF4";
	var cellnormal1	 	= "#D76B5E";
	var cellactive1		= "#C93A29";

  // mouseover-effect
  function highlight_cell1(cell) {
	cell.style.cursor = 'hand';
	cell.bgColor = cellactive1;
	cell.children.tags('A')[0].style.color = textactive1;
  }

  // mouseout-effect
  function normal_cell1(cell) {
	cell.style.cursor = 'hand';
	cell.bgColor = cellnormal1;
	cell.children.tags('A')[0].style.color = textnormal1;
  }

  // link-simulation
  function cell_link1(cell) {
	cell.children.tags('A')[0].click();
  }

  //-->

<!-- slideshow with previous

	slideimage = new Array(
 		'slideshow/hairstyle1.jpg',
 		'slideshow/hairstyle2.jpg',
 		'slideshow/hairstyle3.jpg',
 		'slideshow/hairstyle4.jpg',
 		'slideshow/hairstyle5.jpg',
 		'slideshow/hairstyle6.jpg',
 		'slideshow/hairstyle7.jpg',
		'slideshow/hairstyle8.jpg',
		'slideshow/hairstyle9.jpg',
		'slideshow/hairstyle10.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=3)";
		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);
 	}

 	document.showimage.src = slideimage[imageno];

  }

  function startss() {
 	tid=setInterval('change()',5000);
  }
  function stopss() {
 	window.clearInterval(tid);
  }
//-->