// This script was supplied free by Hypergurl 
// http://www.hypergurl.com 

<!-- // JavaScript to interpolate random images into a page.

// Number of alternative images 
var ic = 5; 

// Array to hold filenames
var pic = new Array(ic); 
pic[0] = 'images/headerPhoto0.jpg';
pic[1] = 'images/headerPhoto1.jpg';
pic[2] = 'images/headerPhoto2.jpg';
pic[3] = 'images/headerPhoto3.jpg';
pic[4] = 'images/headerPhoto4.jpg';

// Array to hold titles
var title = new Array(ic); 
title[0] = 'Technology Transition Corporation Ltd'
title[1] = 'Technology Transition Corporation Ltd'
title[2] = 'Technology Transition Corporation Ltd'
title[3] = 'Technology Transition Corporation Ltd'
title[4] = 'Technology Transition Corporation Ltd'

// Array to hold alternate text
var alt = new Array(ic); 
alt[0] = 'Technology Transition Corporation Ltd'
alt[1] = 'Technology Transition Corporation Ltd'
alt[2] = 'Technology Transition Corporation Ltd'
alt[3] = 'Technology Transition Corporation Ltd'
alt[4] = 'Technology Transition Corporation Ltd'

// Randomize function
function pickRandom(range) 
	{
	if (Math.random) return Math.round(Math.random() * (range-1)); 
	else 
		{
			var now = new Date();
			return (now.getTime() / 1000) % range;
		}
	} 

// Write out an IMG tag, using a randomly-chosen image name. 
var choice = pickRandom(ic); 

// -->