$.noConflict();
jQuery(document).ready(function($) {
   jQuery("ul#inpiracje-list-ul li:even").addClass("inspiracje-list-left");
   jQuery("ul#inpiracje-list-ul li:odd").addClass("inspiracje-list-right");
   
   jQuery("ul#top10Read li").last().remove();
   jQuery("ul#top10Comment li").last().remove();
   
   jQuery('ul#inpiracje-list-ul-strgl li').each(function(index) {
      var nrItemFoto = index + 1;
      if (nrItemFoto % 4 == 0) {
         jQuery(this).css("padding-right","0");
      }
   });
   
   jQuery(".forum-list-1-box").last().css("border-bottom","none");
});


