﻿$(document).ready(function () {
    $(".block_frontpage").each(function () {
        if ($(this).children().size() < 1) {
            $(this).html("&nbsp;");
        }
    });

});
