$(window).ready(function(){
	$(".infoWrap .infoContent").each(function(i){
		if(i % 2 == 0 && i > 0) {
			$(this).before("<div style=\"clear:both; height:0px; overflow:hidden;\"></div>");
		}
	 });
});