function initOceny() {
    $(".stars").each(function(){
        var width= parseFloat($(this).attr("title"));
        if(width == 0) {
            $(this).parent().hide();
        } else {
            width *= 10;
            width= parseInt(width) + "px";
            $(this).css("width", width);
        }

    });
}
