(function($){
$('.launch_presentation').live('click', function(e){
e.preventDefault();
var that = $(e.target),
url = that.closest('a').attr('href');
if(typeof dialog === 'undefined'){
dialog = $('
Ćadowanie...
');
$('body').append(dialog.hide());
dialog = $('#dialog').pmp_lightbox();
}
dialog.open();
$.ajax({
url: url,
type : 'GET',
success: function(html){
var $html = $(html);
dialog.populate($html);
}
});
});
})(jQuery);