//Please use jQuery instead of $ to avoid Prototype conflicts (present in some cc-common locations).

// add first and last child to list items.
function listChildren(){
	jQuery('ul li:first-child').not(':only-child').addClass('first-child'); 
	jQuery('ul li:last-child').not(':only-child').addClass('last-child');	
}


jQuery(document).ready(function() {
	listChildren();	
});



