<!--
	/* Called when the body is loaded to perform initialisation functions */
	function initialise(){
		
		//Get hold of appropriate parts of the document
		if(document.all && !document.getElementById){			
			homeStyle = document.all["homeButton"].style;
			scienceStyle = document.all["scienceButton"].style;
			philosophyStyle = document.all["philosophyButton"].style;
			musicStyle = document.all["musicButton"].style;
			publicationsStyle = document.all["publicationsButton"].style;
			downloadsStyle = document.all["downloadsButton"].style;
			cvStyle = document.all["cvButton"].style;
			contactStyle = document.all["contactButton"].style;
			artStyle = document.all["artButton"].style;
		}
		else if (document.getElementById){
			homeStyle = document.getElementById("homeButton").style;	
			scienceStyle = document.getElementById("scienceButton").style;
			philosophyStyle = document.getElementById("philosophyButton").style;
			musicStyle = document.getElementById("musicButton").style;
			publicationsStyle = document.getElementById("publicationsButton").style;
			downloadsStyle = document.getElementById("downloadsButton").style;
			cvStyle = document.getElementById("cvButton").style;
			contactStyle = document.getElementById("contactButton").style;
			artStyle = document.getElementById("artButton").style;
		}
		
		//Hacks to tweak css to match browser idiosyncrasies
		if(is_ie5_5 || is_ie6){
			for(var i=1; i<=10; ++i){
				//document.getElementById("sideLogoSqrImg" + i).style.marginLeft = "-3px";
				document.getElementById("sideLogoSqrImg" + i).style.marginTop = "-1px";
			}
		}
		if(is_ie5_5){
			homeStyle.height = "50px";
			scienceStyle.height =  "50px";
			philosophyStyle.height =  "50px";
			musicStyle.height =  "50px";
			publicationsStyle.height =  "50px";
			downloadsStyle.height =  "50px";
			cvStyle.height =  "50px";
			contactStyle.height =  "50px";
			artStyle.height =  "50px"; 
		}
	}
	
-->
