﻿  $(document).ready(function(){
      var n = $("div.fiche_modulewrapper").length;
       if (n <= 3) {
      $('div.fiche_modulewrapper').addClass("no-border");
      }
	  var x = parseInt(n/3);
	  var y = x*3;
    // $("span").text("There are " + y + " divs.");
	 $('div.fiche_modulewrapper').each(function(index) {
	 if (index > y-1){
	 	$(this).addClass("no-border");

	 }
	 
	  });
    });

