/*
// (C) Copyright 2003-2004 The Griswold Company, Inc.
// javascript by Eric Wright
//
*/


var currentdate = 0;
var core = 0;

function StringArray (n) 
	{
	this.length = n;
	for (var i=1; i <= n; i++) 
		{
		this[i] = '';
		}
	}

image = new StringArray(1)
image[0] = 'images/masthead/bar_Peter.jpg';

var ran = 60/image.length;

function ranimage() 
	{
	currentdate = new Date();
	core = currentdate.getSeconds();
	core = Math.floor(core/ran);
	return(image[core]);
	} 
	
