// This script was supplied free by Hypergurl 
// http://www.hypergurl.com 

<!-- // JavaScript to interpolate random images into a page.

// Number of alternative images 
var img = 4; 

// Array to hold filenames
var pic = new Array(img); 
pic[0] = 'images/headerPhoto1.jpg';
pic[1] = 'images/headerPhoto2.jpg';
pic[2] = 'images/headerPhoto3.jpg';
pic[3] = 'images/headerPhoto4.jpg';

// Array to hold titles
var title = new Array(img); 
title[0] = 'Hip Pocket Band'
title[1] = 'Hip Pocket Band'
title[2] = 'Hip Pocket Band'
title[3] = 'Hip Pocket Band'

// Array to hold alternate text
var alt = new Array(img); 
alt[0] = 'Hip Pocket Band'
alt[1] = 'Hip Pocket Band'
alt[2] = 'Hip Pocket Band'
alt[3] = 'Hip Pocket Band'


// 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(img); 

// -->