function initializeFrontPage()
{
	var content = document.getElementById("content");
	var oldContentHeight = content.offsetHeight;
	content.style.height = "auto";
	var c1 = document.getElementById("column1");
	var c2 = document.getElementById("column2");
	var c3 = document.getElementById("column3");
	var height = Math.max(c1.offsetHeight, Math.max(c2.offsetHeight, c3.offsetHeight)) + 6;
	c1.style.height = height + "px";
	c2.style.height = height + "px";
	c3.style.height = height + "px";
	if (window.navigator != null && window.navigator.appName == "Microsoft Internet Explorer" && window.navigator.appVersion.indexOf('MSIE 7') == -1)
	   content.style.marginBottom = "-241px";
}

function initializeSubPage()
{
   // Lik hoyde pa content og leftColumn
   //------------------------------------ 
	var content = document.getElementById("content");
	var leftColumn = document.getElementById("leftColumn");
	var lcHeight = leftColumn.offsetHeight;
	var cHeight = content.offsetHeight;
   var height = cHeight;
	if (lcHeight < cHeight)
	   leftColumn.style.height = cHeight - 183 + "px";
	else
	if (cHeight < lcHeight)
	{
	   height = lcHeight - 12;
	   content.style.height = height + "px";
	}
	
	// Lik hoyde på documentBody og rightMenu
	//----------------------------------------
	height -= 44;
	if (window.navigator != null && window.navigator.appName == "Microsoft Internet Explorer" && window.navigator.appVersion.indexOf('MSIE 7') == -1)
	   height -= 18;
	var documentBody = document.getElementById("documentBody");
	var rightMenu = document.getElementById("rightMenu");
   documentBody.style.height = height - 21 + "px";
   rightMenu.style.height = height + "px";
}

function initializePage()
{
   /* Preloading
   var img1 = new Image(227,20);
   img1.src = "grafikk/om_collapsed.gif");
   var img1 = new Image(227,20);
   img1.src = "grafikk/kontakt_collapsed.gif");
   var img1 = new Image(227,20);
   img1.src = "grafikk/aktuelt_collapsed.gif");
   var img1 = new Image(227,20);
   img1.src = "grafikk/manuskriptutvikling_collapsed.gif");
   var img1 = new Image(227,20);
   img1.src = "grafikk/stipend_collapsed.gif");
   var img1 = new Image(227,20);
   img1.src = "grafikk/kurs_collapsed.gif");
   var img1 = new Image(227,20);
   img1.src = "grafikk/kontakt_collapsed.gif");
   */
   if (document.getElementById("rightMenu") != null)
      initializeSubPage()
   else
      initializeFrontPage();
}

function printthepage(){
   if(navigator.appVersion.indexOf("MSIE 5.0; Macintosh") < 0){
      window.print();
   }
}
