$(document).ready(function(){
        $("a.menu_item").mouseover(function(){
            $("a.selected").next("ul").animate({opacity: "hide"}, 200);
            $("a.selected").removeClass("selected");
        });
        $("a.pp").mouseover(function(){
            $(this).addClass("selected");
            if ($(this).width() > $(this).next("ul").width()){
                $(this).next("ul").width($(this).width()+10);
            }
            $(this).next("ul").animate({opacity: "show", top: $(this).position().top+22, left: $(this).position().left }, 0);
            $(this).next("ul").mouseleave(function(){
                $("a.selected").next("ul").animate({opacity: "hide"}, 250);
                $("a.selected").removeClass("selected");
            });
    });
});

