$(function(){
    $("div.hoverBtn").show("fast", function() {
        $(this).append("<div></div>");
        $(this).children("a").hover(function(){
        $(this).parent().children("div")
                .stop()
                .css({"display": "none", "opacity": "1"})
                .fadeIn("fast");
        $(this)	.stop();
        },function(){
            $(this).parent().children("div")
                .stop()
                .fadeOut("slow");
        });
    });
});



