$(function(){
    $('.thumbimg').each(function() {
        var id = $(this).attr("id");
        var name     = $(this).attr("alt");
        var subtitle = $("#subtitle_"+id).text();
        var content_html = '<table class="fukidashi" width="300px">' +
            '<tr><td>' + name + '</td></tr>' +
            '<tr><td>' + subtitle + '</td></tr>' +
            '</table>';
        $(this).qtip({
            content: content_html, 
            show:{ 
                delay:10
            },
            hide: 'mouseout',
            style:{
            width:"200px",
            tip:{
                corner:"bottomLeft"
            },
            border:{radius:5}},
            position:{
                corner:{
                    target: "topMiddle",
                    tooltip: "bottomLeft"
                }
            }
        });
    });
});

