function closepopup() {
    $("#contentsok").find('.kattittel a').each(function(i) {
        strID = $(this).attr('class');
        $('#bedinfoboks' + strID).hide();
    });
    return false;
}

$(document).ready(function() {

    $('.kattittel a').mouseover(function() {
        strID = $(this).attr('class');
        var popUpHtml = $("#bedinfo" + strID).html();
        $("#bedinfoinnhold" + strID).html(popUpHtml);
        $('#bedinfoboks' + strID).show();
        return false;
    });

    $('.kattittel').mouseleave(function() {
        return closepopup();
    });

    $('div.popupfav').mouseleave(function() {
        return closepopup();
    });
});
