// JavaScript Document

// random splash generator

function randomSplash()

{
	//subsequent code goes here
	var splashImage=new Array()
	
	// location of images in this array
	splashImage[1]="abode/mastheads/masthead01.jpg";
	splashImage[2]="abode/mastheads/masthead02.jpg";
	splashImage[3]="abode/mastheads/masthead03.jpg";
	splashImage[4]="abode/mastheads/masthead04.jpg";
	splashImage[5]="abode/mastheads/masthead05.jpg";
	splashImage[6]="abode/mastheads/masthead06.jpg";
	
	var getRan=Math.floor(Math.random()*splashImage.length)
	if (getRan==0)
	getRan=1

	document.write('<img src=\"'+splashImage[getRan]+'\" alt=\"\" title=\"AbodeDublin\" width=\"485\" height=\"224\" \/>');
}
