jQuery(function ($) {

    // zacetek, nastavi vse newsboxe
    var box = $('div.Newsbox');
    box.each( function() {
      barva = $(this).attr("rel");
      $(this).find('div.Top').css('backgroundImage','url(imgs/themes/'+barva+'_glava_novice.png)');
      $(this).find('div.Middle').css('backgroundImage','url(imgs/themes/'+barva+'_gradient.png)');
      $(this).find('div.Bottom').css('backgroundImage','url(imgs/themes/'+barva+'_podmenu.jpg)');
    });

    // soncki
    var box = $('div.NewsboxSonce');
    box.each( function() {
      barva = $(this).attr("rel");
      $(this).css('backgroundImage','url(imgs/themes/'+barva+'_sonce.png)');
    });

});
