function preload()
{
    imagearray = new Array (
             "./images/barrow1.gif",
             "./images/barrow2.gif",
             "./images/tableborder.gif",
             "./images/tablerborder.gif",
             "./images/topbar1.gif",
             "./images/topbar2.gif",
             "./images/hcourtbuilding0.jpg",
             "./images/hcourtbuilding1.jpg",
             "./images/hcourtbuilding2.jpg",
             "./images/hcourtbuilding3.jpg",
             "./images/newcourt1.jpg",
             "./images/newcourt2.jpg",
             "./images/oldcourt1.jpg",
             "./images/oldcourt2.jpg",
             "./images/topheader1.jpg",
             "./images/topheader2.jpg",
             "./images/topheader3.jpg",
             "./images/tchjustice.gif"
          )

    arraylist = new Array ();

    for (counter in imagearray)
    {
	arraylist[counter] = new Image();
	arraylist[counter].src = imagearray[counter];

    }


    function picture(i) 
    {   
	if(document.images) 
	{
	  document.pic1.src=arraylist[i].src
        };
    }

}





function ScrollIn(td){
if(document.getElementById||(document.all && !(document.getElementById))){
td.style.backgroundColor="#c0c0c0";
}
}



function ScrollOut(td){
if(document.getElementById||(document.all && !(document.getElementById))){
td.style.backgroundColor="";
}
}


