jQuery(document).ready(function () {
    jQuery('#VIDEO_PREVIEW').css('cursor', 'pointer');
    jQuery('#VIDEO_PREVIEW').click(function () {
        var dialog = jQuery('#VIDEO_PLAYER');
        jQuery.ajaxSetup({
          async: false
        });
        jQuery.post('/video/' + dialog.attr('video'), function(data) {
          dialog.html(data);
        });
        dialog.dialog({
//            title: jQuery('#VIDEO_PREVIEW img').attr('alt'),
            dialogClass: 'movie',
            closeText: 'Video schließen',
            resizable: false,
            draggable: false,
            modal: true,
            width: 507
        });
    });
});