/* ================================================================

This copyright notice must be untouched at all times.

Copyright (c) 2008 Stu Nicholls - stunicholls.res - all rights reserved.

=================================================================== */

/* <![CDATA[ */

jQuery(document).ready(function($){

  /* set start (sY) and finish (fY) heights for the list items */
  sY = 35; /* height of li.sub */
  fY = 240; /* height of maximum sub lines * sub line height */

  /* open first list item */
  /*animate (fY)*/
  remain (fY)

  $("#slide .res").click(function() {

    if (this.className.indexOf('clicked') != -1 ) {
      animate(sY)
      $(this).removeClass('clicked')
    } else {
      animate(sY)
      $('.clicked').removeClass('clicked')
      $(this).addClass('clicked');
      animate(fY)
    }
  });

  function animate(pY) {
    $('.clicked').animate({
      "height": pY + "px"
      }, 500);
  }

  function remain(pY) {
    $('.clicked').css("height", pY + "px");
  }

  $("#slide .res").hover(function(){}
  ,function(){
    if (this.className.indexOf('clicked') == -1) {}
  });
});

/* ]]> */
