$(function (){
    $('.progressbar').each(function (){
        var val = parseInt(( $(this).attr('value') ? $(this).attr('value'): 0));
        $(this).progressbar({value: val});
    })
    $('.progressbar-text').each(function (){
        $(this).css({'margin-left':-($(this).width()/2)});
    })
})
