// JavaScript Document

bohemeImages = new Array("images/small_fireplace_copy.jpg","images/small_landlord_group.jpg","images/small_mimi_rudolfo_copy.jpg","images/small_musette_group.jpg")
bohemePic = 0;
bohemeCt = bohemeImages.length

function rotate_boheme() {
  if(document.images){
    if(document.bohemePhotos.complete){
    bohemePic++
	  if(bohemePic == bohemeCt){
	    bohemePic = 0
	   } 
	   document.bohemePhotos.src = bohemeImages[bohemePic]
	   }
	   setTimeout("rotate_boheme()",4000)
   }
   
}
	   

