function toggleMenu(currMenu) {
			if (document.getElementById) {
				thisMenu = document.getElementById(currMenu).style
				if (thisMenu.display == "block") {
					thisMenu.display = "none"
				}
				else {
					thisMenu.display = "block"
				}
				return false
			}
			else {
				return true
			}
		}


function newWindow(marhtml) {
	marWindow = window.open(marhtml, "marWin", "width=350,height=220")
	marWindow.focus()
}


adImages = new Array("../bilder/omhanna1.jpg","../bilder/omhanna2.jpg", "width=230,height=307")
    imgCt = adImages.length
    firstTime = true

 function rotate() {
    if (document.bilder) {
        if (firstTime) {
            thisAd = Math.floor((Math.random() * imgCt))
            firstTime = false
        }
        else {
            thisAd++
            if (thisAd == imgCt) {
                thisAd = 0
            }
        }
        document.bilder.src=adImages[thisAd]
        setTimeout("rotate()", 5 * 1000)
    }
 }

