/*  $Id$
 *  
 *  Copyright 2007-2009, Jamiedia Ltd., http://www.jamiedia.co.uk
 *  
 *  This file may not be used or (re)distributed for any other
 *  purposes than a commercial deployment by Jamiedia of a system
 *  based on the Jamiedia Toolkit. No modifications may be made to
 *  this file by anyone, except for individuals working for Jamiedia Ltd.
 *
 *  File description:
 *
 */ 

$(document).ready(function() {
  var sitemap = $('#sitemap');
  
  sitemap.prepend('<a href="#" class="sitemap-close-button" title="Close sitemap"><span>Close sitemap</span></a>');
  
  sitemap.children('a.sitemap-close-button').click(function() {
      sitemap.hide();
      return false;
  });
  
  $('a.sitemap-open-button').click(function() {
    sitemap.show();
    return false;
  });
});

