<!--  // ROLLOVER CODE
if(document.images)
{
  var image_array = new Array();
	
  // path to the directory with images
  var path = 'images/';

  // enumeration of the "active" images
  image_array[0] = path + "appointmentBtn-hover.png";
  image_array[1] = path + "reviewsBtn-hover.png";
  image_array[2] = path + "techniqueBtn-hover.png";
  image_array[3] = path + "aboutBtn-hover.png";

  var preload_image = new Array ();
 
  for(var i=0; i<image_array.length; i++)
  {
    preload_image[i]= new Image();
    preload_image[i].src = image_array[i];
  }
}

function rollover(name, filename)
{
  var fullpath = 'images/' + filename;
  document.images[name].src = fullpath;
}
//-->


<!--  // ROTATOR CODE
var imgs = new Array(); var imgcnt = 0; 
imgs[imgcnt++] = '<a href="http://www.greeleytribune.com/article/20110412/NEWS/704129933"><img src="images/ads/greeley-tribune.png" alt="Read about my unqiue healing therapy at the Greeley Tribune!" /></a>';
imgs[imgcnt++] = '<a href="http://www.afrays.com"><img src="images/ads/af-rays.png" alt="Find me at AF Rays Thursday nights for $5 chair massage!" /></a>';
imgs[imgcnt++] = '<a href="technique.html"><img src="images/ads/cmm01.png" alt="Not your average backrub. Discover the difference." /></a>';

var thisimg = Math.floor(Math.random()*imgs.length)-1;
if (thisimg == 0) thisimg = 1;

function rotate() {
if (document.images) {
	thisimg++;
	if (thisimg >= imgcnt) thisimg = 0;
	document.getElementById('teaserAd').innerHTML = imgs[thisimg];
	}
}

setInterval(rotate,5000);
-->

