﻿/**
 * Inicializuj "teplomery" na strance
 */
$(document).ready(function() {
    $(".Progressbar").each(function() {
        var percent = parseInt($(this).text());
        $(this).html('<div class="Bar"></div><div class="Percents">&nbsp;' + percent + ' %</div><div class="Reset"></div>');
        $(this).children(".Bar").progressbar({
            value: percent
        });
    });
});