#footer_menu li:after { content: "/";}#footer_menu li:last-child:after { content: "";}
The whole thing can be done in one line with better CSS3.
#footer_menu li:nth-child(n+1):before { content: "/"; }