$(function() {
	$('#menul > span, #menub > span')
	.bind('mouseenter', function() {
		$('#' + this.id + 'd').removeClass('dn');
	})
	.bind('mouseleave', function() {
		$('#' + this.id + 'd').addClass('dn');
	});
});

