// JavaScript Document

var theImages2 = new Array() 

theImages2[0] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/07_t.jpg'
theImages2[1] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/08_t.jpg'
theImages2[2] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/09_t.jpg'
theImages2[3] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/10_t.jpg'
theImages2[4] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/11_t.jpg'
theImages2[5] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/12_t.jpg'

var theLink2 = new Array() 

theLink2[0] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/07.jpg'
theLink2[1] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/08.jpg'
theLink2[2] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/09.jpg'
theLink2[3] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/10.jpg'
theLink2[4] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/11.jpg'
theLink2[5] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/12.jpg'

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

function showImage2(){
	document.write('<a href="'+theLink2[whichImage2]+'" rel="lightbox"><img src="'+theImages2[whichImage2]+'"></a>');
}
//-->

