var P = new Array('5','6','9','35','112','32','10','17','79','14','7','8','11')

var t
var j = 0
var p = P.length

function runTour(){
	 k = j + 2 
	 var loadNext = new Array()
	 for (i = 0; i < k; i++){
		  loadNext[i] = new Image()
	    loadNext[i].src = 'imgs/slides/'+P[i]+'.jpg'
	 }
   if (document.all){
      document.images.Tour.style.filter="blendTrans(duration=1)"
      document.images.Tour.filters.blendTrans.Apply()      
   }
   document.images.Tour.src = loadNext[j].src
   
   if (document.all){
      document.images.Tour.filters.blendTrans.Play()
   }
   j = j + 1
   if (j > (p - 1)) j = 0
   t = setTimeout('runTour()', 2200)
}

function esculpt(){
	 window.location='http://www.monikabuch.com/gallery.asp?theme=Circles%20and%20Spirals'
}
