$(document).ready(function(){
	$("ul#jsddm li").hover(function() {
		$(this).find("span").show();
		} , function() {
		$(this).find("span").hide();
	});
});

