$(document).ready(function() {
    $('.tooltip[id^="tooltip_"]').each(function(){
        $(this).qtip({
            content: $('#data_' + $(this).attr('id')),
                show: {
            },
            hide: {
                fixed: true,
                delay: 180
            },
            style: {
					classes: 'ui-tooltip-dark ui-tooltip-shadow'
				},
            position: {
					my: 'bottom center',  // Position my top left...
					at: 'top center', // at the bottom right of...
				}
        });
    });
});

