// This jQuery function adds a .separator span before each AdminWS link that is not the first.
$(document).ready(function($) {
	$('.adminTxt:not(:first)').before('<span class="separator">|</span>')
});
