/**
 * @author simon
 */

jQuery(document).ready(function() {
	jQuery(".articleComment:even,.articleListing:even").addClass('altRow');
	jQuery(".articleImage img").removeAttr('style');
	
	var index=1;
	while (jQuery("ul#adCategoriasNoticias li[data-level='" + (index + 1) + "']").length > 0) {
		jQuery("ul#adCategoriasNoticias li[data-level='" + index + "']").each(function(){
			jQuery(this).nextUntil("li[data-level='" + index + "']").wrapAll('<ul></ul>');
		});	
		++index;
	}
});
