// JavaScript Document

var theImages1 = new Array() 

theImages1[0] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/01_t.jpg'
theImages1[1] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/02_t.jpg'
theImages1[2] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/03_t.jpg'
theImages1[3] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/04_t.jpg'
theImages1[4] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/05_t.jpg'
theImages1[5] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/06_t.jpg'

var theLink1 = new Array() 

theLink1[0] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/01.jpg'
theLink1[1] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/02.jpg'
theLink1[2] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/03.jpg'
theLink1[3] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/04.jpg'
theLink1[4] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/05.jpg'
theLink1[5] = 'http://www.ga-morton.co.uk/wp-content/themes/GinaMorton/gallery/06.jpg'

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

function showImage1(){
	document.write('<a href="'+theLink1[whichImage1]+'" rel="lightbox"><img src="'+theImages1[whichImage1]+'"></a>');
}
//-->

