$(document).ready(function(){       
   
	
$('ul.children li').prepend('-');	
/* the function above will put an - at the beginning of menu items with class children */
$('li.series-item').prepend('-');



 });