﻿/* Flytter annonse ved scrolling. */
window.onscroll = function()
{
    //javascript:alert("Sidehøyde: " + document.body.scrollHeight + " Avstand til topp: " + document.body.scrollTop)// + " X: " + (document.body.scrollHeight - 800)

	if (document.body.scrollTop > 560) {// && document.body.scrollTop < document.body.scrollHeight - 840
		document.getElementById("StickySkyskraper").style.top = document.body.scrollTop - 510;
	} else{
		//document.getElementById("StickyBanner_Emneside").style.top = 0;
	}
}

