




  theImages[0] = "http://www.frenchpastryschool.com/extra/featured/alumni-levy.jpg"
  theImages[1] = "http://www.frenchpastryschool.com/extra/featured/alumni-lovely.jpg"
  theImages[2] = "http://www.frenchpastryschool.com/extra/featured/alumni-magpie.jpg"
  theImages[3] = "http://www.frenchpastryschool.com/extra/featured/alumni-whimsical.jpg"
  theImages[4] = "http://www.frenchpastryschool.com/extra/featured/alumni-bleedingheart.jpg"
  theImages[5] = "http://www.frenchpastryschool.com/extra/featured/alumni-cakebox.jpg"
 


var j = 0
var p = theImages.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}

var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
}

