You can add an icon to the beginning of each menu item by adding this custom CSS:
#nav li {
list-style-image:url('directory to image you want to use');
list-style-position:inside;
}
but then each will have the same icon.
I think you are looking for something more like this, only without the text?
In that case, you will need to use the class number of each menu item in the custom CSS and not bother with text. I’m not entirely sure how that to accomplish that just yet, however.