/*
 *   Copyright 2010 Rosemary Reilman
*/

$(document).ready(function() {

    // shows the clickbox DIV on clicking the link with an ID of "click-show"
      $('img.click-show').click(function() {
        $('div.clickbox', $(this).parent().parent()).show('slow');
        $('.click-hide', $(this).parent().parent()).show();
        $('.click-show', $(this).parent().parent()).hide();
        return false;
      });

      // shows the clickbox DIV on clicking the link with an ID of "click-show"
      $('img.click-hide').click(function() {
        $('div.clickbox', $(this).parent().parent()).hide('slow');
        $('.click-hide', $(this).parent().parent()).hide();
        $('.click-show', $(this).parent().parent()).show();
        return false;
      });

});
