/**
 *
 * Copyright (c) 2008 GeminiSBS, New York, NY.
 *
 * All rights reserved, except those explicitly granted in
 * licensing agreement. Unauthorized use or redistribution
 * strictly prohibited.
 *
 * http://www.geminisbs.com
 *
 * @author Dan Porter <dan@geminisbs.com>
 */
;(function($) {

  $(document).ready(function() {
    // Clicks on the edit profile link  
    $('#top_navigation .edit-profile').click(function(event) {
  
      $.get("/user/profile", null, function() {
        $('#edit-profile-dialog').attachAndReturn($.goldbook.formDialog, {
          modal: true
        });
      });
  
      return false;
    });

    // Hook for paragraph quick view
    $("a").click(function(event){
      href = event.target.href;
      re   = /\/quickview\/\d+\/?$/
      if (re.test(href))
      {
        $.get(href, null, function () {
          $('#quick-view-dialog,#quick-view-auth-required').attachAndReturn($.goldbook.dialog, {
            modal: true
          });

        });
        return false;
      }
    });

  });
})(jQuery);