<!--
/* SVN FILE: $Id: rollup.js 18 2009-11-04 22:02:09Z Chris $ */
/**
 * Rollup and down effects for portlets
 *
 * @copyright    Copyright 200p PBM Web Development - All Rights Reserved
 * @package      js
 * @since        V1.0.0
 * @version      $Revision: 18 $
 * @modifiedby   $LastChangedBy: Chris $
 * @lastmodified $Date: 2009-11-04 22:02:09 +0000 (Wed, 04 Nov 2009) $
 */
jQuery(document).ready(function(){
  jQuery('div.rollup p.header').append('<span class="rolldown"></span>').css('cursor','pointer').click(function(){
    $(this).parent().children('div.content').slideToggle('slow');
    $(this).children('span:last').toggleClass('rolldown');
    $(this).children('span:last').toggleClass('rollup');
  });
});
// -->