function breadcrumbs(){
  sURL = new String;
  bits = new Object;
  var x = 0;
  var stop = 0;
  var output = "<a href=\"/\">Home</a>  /  ";
  sURL = location.href;
  sURL = sURL.slice(8,sURL.length);
  chunkStart = sURL.indexOf("/");
  sURL = sURL.slice(chunkStart+1,sURL.length)
  while(!stop){
    chunkStart = sURL.indexOf("/");
    if (chunkStart != -1){
      bits[x] = sURL.slice(0,chunkStart)
      sURL = sURL.slice(chunkStart+1,sURL.length);
    }else{
      stop = 1;
    }
    x++;
  }
  for(var i in bits){
    output += "<a href=\"";
    for(y=1;y<x-i;y++){
      output += "../";
    }
    output += bits[i] + "/\">" + bits[i] + "</a>  /  ";
  }
  document.write(output + document.title);
}

// Random Image Slideshow
 
   function jumpPage(newLoc) {
    newPage = newLoc.options[newLoc.selectedIndex].value
	
	  if (newPage !="") {
	   window.location = newPage
   }
  }
	
// Random Image Slideshow Array

	adImages = new Array("../images/thumbnails/lovepot.jpg", "../images/thumbnails/lovepot.jpg", 
	"../images/thumbnails/milk_jug.jpg", "../images/thumbnails/mugs.jpg", "../images/thumbnails/plantpot.jpg",
	 "../images/thumbnails/salt_pig.jpg", "../images/thumbnails/shelbowl.jpg", "../images/thumbnails/teap_jug.jpg",
	  "../images/thumbnails/videpoc2.jpg", "../images/thumbnails/videpoch.jpg")
	imgCt = adImages.length
	firstTime = true
	
	function rotate() {
		if (document.images) {
			if (firstTime) {
				thisAd = Math.floor
					((Math.random() * imgCt))
				firstTime = false
			}
			else {
				thisAd++
				if (thisAd == imgCt) {
					thisAd = 0
				}
			}
			document.myPicture.src=adImages
				[thisAd]
			setTimeout("rotate()", 3 * 1000)
		}
	}
