$(document).ready(function() {
    //override datagrid
    $('.announcementArchive .content table td:first-child').remove();

    //height fix frontpage
    if ($('#contentWrapper #contentCenter').height() > $('#contentWrapper #contentRight').height()) {
        $('#contentWrapper #contentRight').height($('#contentWrapper #contentCenter').height());

    }

    /*
    alert("korkeus =\n" +
    $('#contentWrapper #contentCenter').height()
    );
    */

    //mark 1st title visible
    $('.subpage #contentLeft .announcementGroup .content .announcement .publishingTime').eq(0).addClass('vtitle');

    //get title text and mark as active:
    //--- $('html head title').text()

    //$('.subpage #contentLeft .announcementGroup .content .announcement div.hyperLinkTitle a:contains(' + document.title + ')').css('border', '5px solid blue');
    $('.subpage #contentLeft .announcementGroup .content .announcement div.hyperLinkTitle a:contains(' + document.title + ')').addClass('active');


});

