$(document).ready(function(){
	groupProductLists();
});


function groupProductLists() {
	$("#productLists ul:even").each(function() {
		$(this).next().andSelf().wrapAll("<div class='productList'>");
		
	})
}
