$(document).ready(function(){
    $.fx.speeds._default = 800;
    $(".popup-text").click(function(){
        
        var $textElement = $(this).parent().find('div:first');
        if($textElement.length < 1 && $(this).attr('name').length > 0) {
            var nameId = $(this).attr('name');
            $textElement = $("#"+nameId);
        }
        
        var dialogTitle = $(this).attr('title');
        modalDialog.setContent($textElement.html()).openDialog({
            title: dialogTitle,
            width: 600,
            height: 'auto',
            resizable: false,
            draggable: false,
            modal: true,
            show: 'fade',
            hide: 'fade'
        });
        
        $(".ui-widget-overlay").click(function(){
            modalDialog.getDialog().dialog('close');
        });
        
        return false;
    });
    
});
