A quick snippit for you to apply jQuery selection to all but first element:-
<script type="text/javascript"> $(document).ready(function(){ $('ul.selector :not(:first-child)').each(function(){ $(this).prepend("<span> / </span>"); }); }); </script>
As per our example this is useful in unordered / ordered lists and therefor menus etc. We are prepending a span with x2 spaces to every li except the first.