$(window).load(function() {

   $('a.order_for_reading, a.order_for_performing').click(function(){
    var url = this.href;
    var dialog = $('<div style="display:hidden"></div>').appendTo('body');
    var title = $(this).text();

    // load remote content
      dialog.load(
        url,
        {},
        function (responseText, textStatus, XMLHttpRequest) {
        dialog.dialog(
          {
            modal: true,
            title: title,
            show: 'fade',
            hide: 'fade',
            resizable: false
          }
        );
        }
      );
    //prevent the browser to follow the link
    return false;
   });

   $('a.vignetteTrigger').click(function(){
    var url = this.href;
    var dialog = $('<div style="display:hidden"></div>').appendTo('body');
    var title = $(this).text();

    // load remote content
      dialog.load(
        url,
        {},
        function (responseText, textStatus, XMLHttpRequest) {
        dialog.dialog(
          {
            modal: true,
            title: title,
            show: 'fade',
            hide: 'fade',
            resizable: false,
            width: 500
          }
        );
        }
      );
    //prevent the browser to follow the link
    return false;
   });

});

