
var		bgimages=new Array(
	
			"http://salamassan.se/bilder/hemsidan/sala0.jpg",
			"http://salamassan.se/bilder/hemsidan/sala1.jpg",
			"http://salamassan.se/bilder/hemsidan/sala2.jpg",
			"http://salamassan.se/bilder/hemsidan/sala3.jpg",
			"http://salamassan.se/bilder/hemsidan/sala4.jpg",
			"http://salamassan.se/bilder/hemsidan/sala5.jpg",
			"http://salamassan.se/bilder/hemsidan/sala6.jpg",
			"http://salamassan.se/bilder/hemsidan/sala7.jpg",
			"http://salamassan.se/bilder/hemsidan/sala8.jpg",
			"http://salamassan.se/bilder/hemsidan/sala9.jpg"


		);


		
var o = null;

function toggle(id){
	if(o && (id != o)) toggleReset(o);
	if(id == o) o = null;
	else o = id;
	toggleReset(id);
}
function toggleReset( id){
  if (document.getElementById){
  		target = document.getElementById( id );
  			if (target.style.display == "none"){
  				target.style.display = "block";
  			} else {
  				target.style.display = "none";
  		}
  	}
}

window.onload =function() {
	
	 document.getElementById("top").style.backgroundImage="url("+bgimages[Math.floor(Math.random()*bgimages.length)]+")"; 
	
	var href = document.getElementsByTagName("a");
	for (var i=0;i<href.length;i++) { 
	    href[i].onfocus = function() {this.blur();}};
	

};

