// image-rotate.js - a script to rotate the Aumdoc homepage images

// Specify the images.
// Format: "URL&width&height"

  var j,d="",l="",m="",p="",q="",z="",aRotate= new Array()

aRotate[aRotate.length]='images/rotating/shaman-art.jpg?&width=243&height=300';
aRotate[aRotate.length]='images/rotating/katipo.jpg?&width=265&height=272';
aRotate[aRotate.length]='images/rotating/lotus.jpg?&width=245&height=300';
aRotate[aRotate.length]='images/rotating/spirit-dome-mother.jpg?&width=260&height=300';

j=parseInt(Math.random()*aRotate.length);
  j=(isNaN(j))?0:j;
  document.write("<img src='"+aRotate[j]+"' border='0' alt='Aumdoc - Richard Clofine, D.O.' title='Aumdoc - Richard Clofine, D.O.'>");

// image-rotate.js end

