var theImagesC = new Array()
theImagesC[0] = '/assets/templates/sunset/images/rb-13-cabin.jpg'
theImagesC[1] = '/assets/templates/sunset/images/rb-14-shoreline.jpg'
theImagesC[2] = '/assets/templates/sunset/images/rb-16-cabin.jpg'
theImagesC[3] = '/assets/templates/sunset/images/rb-17-inside.jpg'
theImagesC[4] = '/assets/templates/sunset/images/rb-18-point.jpg'


var j = 0
var p = theImagesC.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImagesC[i]
}
var whichImageC = Math.round(Math.random()*(p-1));
function showImageC(){
document.write('<img src="'+theImagesC[whichImageC]+'">');
}
//  End -->


