// JavaScript Document

var theImages3 = new Array() 

theImages3[0] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/13_t.jpg'
theImages3[1] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/14_t.jpg'
theImages3[2] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/15_t.jpg'
theImages3[3] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/16_t.jpg'
theImages3[4] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/17_t.jpg'
theImages3[5] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/18_t.jpg'

var theLink3 = new Array() 

theLink3[0] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/13.jpg'
theLink3[1] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/14.jpg'
theLink3[2] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/15.jpg'
theLink3[3] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/16.jpg'
theLink3[4] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/17.jpg'
theLink3[5] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/18.jpg'

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

function showImage3(){
	document.write('<a href="'+theLink3[whichImage3]+'" rel="lightbox"><img src="'+theImages3[whichImage3]+'"></a>');
}
//-->

