// JavaScript Document

var theImages4 = new Array() 

theImages4[0] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/19_t.jpg'
theImages4[1] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/20_t.jpg'
theImages4[2] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/21_t.jpg'
theImages4[3] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/22_t.jpg'
theImages4[4] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/23_t.jpg'
theImages4[5] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/24_t.jpg'

var theLink4 = new Array() 

theLink4[0] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/19.jpg'
theLink4[1] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/20.jpg'
theLink4[2] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/21.jpg'
theLink4[3] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/22.jpg'
theLink4[4] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/23.jpg'
theLink4[5] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/24.jpg'

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

function showImage4(){
	document.write('<a href="'+theLink4[whichImage4]+'" rel="lightbox"><img src="'+theImages4[whichImage4]+'"></a>');
}
//-->

