<!-- Begin 01
var theImages01 = new Array() 

theImages01[0] = '../../_img/img-01.jpg'
theImages01[1] = '../../_img/img-02.jpg'
theImages01[2] = '../../_img/img-03.jpg'
theImages01[3] = '../../_img/img-04.jpg'
theImages01[4] = '../../_img/img-05.jpg'
theImages01[5] = '../../_img/img-06.jpg'
theImages01[6] = '../../_img/img-07.jpg'
theImages01[7] = '../../_img/img-08.jpg'
theImages01[8] = '../../_img/img-09.jpg'
theImages01[9] = '../../_img/img-10.jpg'
theImages01[10] = '../../_img/img-11.jpg'
theImages01[11] = '../../_img/img-12.jpg'
theImages01[12] = '../../_img/img-13.jpg'
theImages01[13] = '../../_img/img-14.jpg'

// do not edit anything below this line
var j = 0
var p = theImages01.length;
var preBuffer01 = new Array()
for (i = 0; i < p; i++){
   preBuffer01[i] = new Image()
   preBuffer01[i].src = theImages01[i]
}
var whichImage01 = Math.round(Math.random()*(p-1));
function showImage01(){
document.write('<img src="'+theImages01[whichImage01]+'" border="0"  class="sidePic">');
}
//  End 01 -->