$(document).ready(function(){	
	
	//Wrap all OL & UL lis in .theContent with a span for styling
	$('.theContent ol li').wrapInner('<span/>');
	$('.theContent ul li').wrapInner('<span/>');
	
});
