$(document).ready(function(){
    if (typeof init=='function')
    {
        init();
    }

    $("a.external").attr("target", "_blank");
    $('a').click(function() { this.blur(); });
    
    $('#tarievenlijst tr:even').addClass('odd');
    
    $( "input, textarea" ).placehold( "something-temporary" );
    
    resizeme();
    $(window).resize(resizeme);

});  

function resizeme()
{
    var windowheight = $(window).height();
    var tableheight = $("#logotr").height() +  $("#menutr").height() + $("#contenttr").height();
    var newheight = windowheight-tableheight;
    if (newheight<0) newheight=0;
    $("#lastrow").height(newheight);
    $("#lastrow TD").height(newheight);
}

