<!-- // slideshow button rollovers
	var textnormal		= "#336699";
	var textactive		= "#336699";
	var cellnormal	 	= "#D9E6F3";
	var cellactive		= "#BDCBD9";

  // mouseover-effect
  function highlight_cell(cell) {
	cell.style.cursor = 'hand';
	cell.bgColor = cellactive;
	cell.children.tags('A')[0].style.color = textactive;
  }

  // mouseout-effect
  function normal_cell(cell) {
	cell.style.cursor = 'hand';
	cell.bgColor = cellnormal;
	cell.children.tags('A')[0].style.color = textnormal;
  }

  // link-simulation
  function cell_link(cell) {
	cell.children.tags('A')[0].click();
  }

//-->

<!-- slideshow without links

	slideimage = new Array(
 		'images/hairstyle1.jpg',
 		'images/hairstyle2.jpg',
 		'images/hairstyle4.jpg',
 		'images/hairstyle5.jpg',
 		'images/hairstyle6.jpg'
	);

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

  function change() {

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

 	document.showimage.src = slideimage[imageno];

  }

  function change_back() {

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

 	document.showimage.src = slideimage[imageno];

  }

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