//Inserts the top of every page, including graphic in corner and random page in side



var line1= "<!--Top Bar Cell--><tr height=100px><!--Spacer Cell--><td align=center valign=top>" ;
//corner image

var cornerpic = "http://sthelenparish.net/img/parishstandard.jpg";





//random numbers 1 to 2 - the number of images in the "backgrounds" folder
var rand_no = Math.floor(2*Math.random())+1;


document.write (line1 +"<img src="+cornerpic+"> </img></td>" + "<td width=799px background=\"../backgrounds/" + rand_no + ".jpg\"> <h1>"+ document.title + "</h1>");

	var myMenu;
	window.onload = function() {
		myMenu = new SDMenu("my_menu");
    	myMenu.speed=5;  /*set menu expansion speed (1-5)*/
    	
		myMenu.init();
		
	};
