// JavaScript Document

$(document).ready(function() {	
													 
	// This tidies up the Featured Product display on the homepage	
	$('.content-wrapper .featuredProductListThbSection').each(function(i) {
      i=(i+1);
      if(i%3==0){
     		$(this).addClass("last");
    	}
  });			
});
