// JavaScript Document

var theImages5 = new Array() 

theImages5[0] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/25_t.jpg'
theImages5[1] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/26_t.jpg'
theImages5[2] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/27_t.jpg'
theImages5[3] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/28_t.jpg'
theImages5[4] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/29_t.jpg'
theImages5[5] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/30_t.jpg'

var theLink5 = new Array() 

theLink5[0] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/25.jpg'
theLink5[1] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/26.jpg'
theLink5[2] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/27.jpg'
theLink5[3] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/28.jpg'
theLink5[4] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/29.jpg'
theLink5[5] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/30.jpg'

var j = 0
var p = theImages5.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages5[i]
}
var whichImage5 = Math.round(Math.random()*(p-1));

function showImage5(){
	document.write('<a href="'+theLink5[whichImage5]+'" rel="lightbox"><img src="'+theImages5[whichImage5]+'"></a>');
}
//-->

