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

$(document).ready(
  function(){
    $('#page_map li.page .content, #page_map li.marks .content').click(
      function(){
        $('.panel').fadeOut('slow');
        panel = $(this).parent().find('.panel');
        panel.fadeIn('slow');
        panel.find('.close').click(function(){
          panel.fadeOut('slow');
        });
      }
    );
  }
);

