$(function(){
    $("#lmenu .lmn > a").hover(function(){
        var oo = document.getElementById('menuabr');
        if (oo) $(oo).remove();
        if ($(this).attr("id").length>0){
                var $el = $("#div"+$(this).attr('id')), offs = $(this).offset(), l = offs.left+$(this).width()+17, t = offs.top;
		$("body").append('<div id="menuabr"><div class="ppmno">&nbsp;</div></div>').find("#menuabr").css({
			position:"absolute",
			left:l,
			top:t
		}).mouseleave(function(){$(this).remove();}).find(".ppmno").html($el.html());
	}
    });
//    $("#lmenu > a[id]").append('<img src="/Images/darrow.gif" align="absmiddle">');
});