jQuery(document).ready(function($) {
	
	$( '#col-left ol.styled li' ).each(function (i) {
		i = i + 1;
		$( this ).prepend( '<span class="listnumber">' + i + '<span>/</span></span>');
	});
	$( '#col-left ul.styled li' ).each(function (i) {
		$( this ).wrapInner( '<p></p>');;
	});
	
});