Progressbar valueDiv 0% fix

by bizamajig

HTML

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/smoothness/jquery-ui.css">
<p class="text">Controlla mail</p>
<div class="progressbar"></div>

CSS

h1 {
    margin: 10px 0;
}
p.text{
    position:relative;
    float:left;
    line-height:32px;
}
.progressbar{
margin-left:100px;
}

JavaScript

jQuery(function($) {
    $(".progressbar").progressbar({
        value: 10
    });

});