﻿$(document).ready(function() {

    //Set minimumheight for content equal to left column
    var contentheight = $("#content").height();
    var leftheight = $("#left").height();
    var rightheight = $("#right").height();

    if (leftheight < rightheight)
        leftheight = rightheight;

    if (leftheight > contentheight)
        $("#content").height(leftheight);

    //dersom venstre kolonne er høyere enn 600px (som er default min height)
    //if (leftheight > 600)
    //    $("#searchcontent").height(leftheight);
});
