$(document).ready(function(){
						  				   
	$('.callout').each(function(e){
		if(e % 3 == 0){
			$(this).css('clear','both');
		}
	});
	
});
