﻿
function initNieuwsPortalWebPart()
{
    $(".NieuwsItem, .NieuwsItemTop").hover(function()
        {
            $(this).addClass("NieuwsItemSelected");
        },
        function()
        {
            $(this).removeClass("NieuwsItemSelected");
        }
    );
}

function showNieuwsItem() {
    if (jQuery.support.opacity)
        $(".NieuwsberichtOuter").fadeIn("fast");
    else
    //$(".NieuwsberichtOuter").fadeIn("fast", function() {this.style.removeAttribute("filter");}); 
        $(".NieuwsberichtOuter").fadeIn("fast", function () { $(this).removeAttr("filter"); });
}


