$(window).load(function(){ doLayout(); });
//$(document).ready(function(){ doLayout(); });

function doLayout() {
	/////////////////////////////////
	// RELAYOUT ARTICLES
	
	// relocate the lists of content into its base container: content-listings
	$(".content-listings ul li").each(function(i){
	
		// Remove any traces of classes
		$(this).removeClass();
		
		// For zebra stripes
		var zebra = "odd";
		if(i%2 == 0) zebra = "even";
		$(this).addClass(zebra);
		
	});
	
	reLayout(".format.content-listings li", new Array("h1", ".padded"), 2);

}
