function three_teasers_per_row() {
  jQuery('.teaser').each(function(index) {
     if ((index % 6) == 2) {
         jQuery(this).clone().appendTo(jQuery(this).parent().prev());
     }
     if ((index % 6) == 3) {
         jQuery(this).clone().prependTo(jQuery(this).parent().next());
     }
  });
  jQuery('.teasers_box').each(function(index) {
     if ((index % 2) == 1) {
         jQuery(this).empty().remove();
     }
  });
  jQuery('.teaser').each(function(index){
    jQuery(this).addClass('teaser3').removeClass("teaser_right"); //3 teasers per row on home page
  });
}
