jQuery(document).ready(function($) {
	// attach ids to the first level list items under the catGroup17 ul
	jQuery('#catGroup17 > li').each(function(index) {
		jQuery(this).attr({id:'cat_'+index});
	});
});

