img2 = new Image()

//seconds = "1";

function randomImage()
{

var imageArray = new Array();

imageArray[0] = "images/frontpage1.jpg";
imageArray[1] = "images/frontpage2.jpg";

var rNum = Math.floor(Math.random()* imageArray.length)

document.frontimage.src = imageArray[rNum];

//document.frontimage.src = 'images/frontpage2.jpg'; //needed to be added
//setTimeout("imgTwo()", seconds * 1000);
}

//function imgTwo()
//{
//document.frontimage.src = 'images/frontpage1.jpg'; //needed to be added
//setTimeout("imgOne()", seconds * 1000);
//}




