/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

// dom ready !
$(function(){
    $.superbox();

    //$('a[rel*=facebox]').facebox();
    //return false;
    
    //$.blockUI({ message: null, css: { width: '275px' } });

    
    $('*[rel="facebox"]').click(function(){


        $.ajax({
                url: '/email-this-page/',
                cache: false,                
                complete: function(data) {
                    // unblock when remote call returns
                    var content = $('#content', data.responseText).clone(true);
                    $.facebox( content );
                }
            });
            return false;
    });
   
});
