﻿function doMapPost(nr)
{
    $(".txtPostnr").val(nr);
    $(".btnSubmit").click();
}

$(function() {
    //    $(document).pngFix();
    $("#imgmap area").each(function() {
        this.postNr = this.title;
        this.href = "#";
        $(this).click(function() { doMapPost(this.postNr); });
    });

    $(".grid").removeAttr("rules");
    $(".grid tr:first").addClass("header");
    $(".grid tr:even:not(:first)").addClass("even");
    $(".grid tr:not(:first)").each(function() {
        $("td:eq(3)", this).each(function() {
            var myText = $(this).html();
            if (myText == "" || myText == "&nbsp;") $(this).text("-");
        });
    });
});