// "Random" image generation
// Jonathan Lequire

//Header images
var fpImgs = new Array()

fpImgs[0] = 'img/fp_tartan01.jpg'
fpImgs[1] = 'img/fp_tartan02.jpg'
fpImgs[2] = 'img/front_page_demo2.jpg'
fpImgs[3] = 'img/fp_jimmy01.jpg'
fpImgs[4] = 'img/fp_goli01.jpg'
fpImgs[5] = 'img/fp_goli02.jpg'

var p2 = fpImgs.length;

var whichImage2 = Math.round(Math.random()*(p2-1));

function showFPImage() {
  document.write('<img src="'+fpImgs[whichImage2]+'" width="600" height="300" border="0">');
}
