<!-- Begin
// Set up the image files to be used.
var theeImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theeImages[0] = '/wp-content/themes/imaginibbles/images/teaser-2-pic1.jpg'
theeImages[1] = '/wp-content/themes/imaginibbles/images/teaser-2-pic2.jpg'
theeImages[2] = '/wp-content/themes/imaginibbles/images/teaser-2-pic3.jpg'
theeImages[3] = '/wp-content/themes/imaginibbles/images/teaser-2-pic4.jpg'
theeImages[4] = '/wp-content/themes/imaginibbles/images/teaser-2-pic5.jpg'
theeImages[5] = '/wp-content/themes/imaginibbles/images/teaser-2-pic6.jpg'

// do not edit anything below this line

var j = 0
var p = theeImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theeImages[i]
}
var whichImagee = Math.round(Math.random()*(p-1));
function showImage2(){
document.write('<img src="'+theeImages[whichImagee]+'">');
}

//  End -->
