/*function rnd() {
    var ribbon = document.getElementById('ribbon');
    if(!ribbon)
        return setTimeout(rnd, 10);
    ribbon.style.backgroundImage = 'url(img/ribbon_'+Math.ceil(Math.random()*2)+'.jpg)';
}
rnd();*/
