/*$(document).ready(function() {
   $('.box').each(function(i) {
		w = $(this).parent().width();
		f = Math.floor(w/310);
		nw = Math.floor((w-20)/f);
		
		$(this).css('width',nw+'px');
		
		if(i==(f-1)){
			$(this).css('margin-right','0px');
		}
		if(i>(f-1)){
			$(this).css('margin-top','10px');
		}
		//alert('give me feedback!');
  });
});*/
