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

This copyright notice must be untouched at all times.

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

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

/* <![CDATA[ */

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

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

  /* open first list item */
  /*comanimate (comfY)*/
  comremain (comfY)

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

    if (this.className.indexOf('comclicked') != -1 ) {
      comanimate(comsY)
      $(this).removeClass('comclicked')
    } else {
      comanimate(comsY)
      $('.comclicked').removeClass('comclicked')
      $(this).addClass('comclicked');
      comanimate(comfY)
    }
  });

  function comanimate(compY) {
    $('.comclicked').animate({
      "height": compY + "px"
      }, 500);
  }

  function comremain(compY) {
    $('.comclicked').css("height", compY + "px");
  }

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

/* ]]> */
