
/* Hothouse: Taken from Pauls Drupal module */

$(function(){
  $('div.noview').hide();
  $('div.allhidereveal> h2').next().hide();
  $('div.allhidereveal:lt(99)> h2').click(function() {
    $(this).next().slideToggle('fast');

    var p = $(this).css('background-position');
    var tp = typeof p;
    if (tp === 'undefined') { // IE weirdness, jquery bug?
      if ($(this).css('backgroundPositionY').indexOf('5px') > -1)
        $(this).css('backgroundPositionY', '-89px');
      else
        $(this).css('backgroundPositionY', '5px');
    } else { // FF doesn't cope with -x or -y !
      if ($(this).css('background-position').indexOf('5px') > -1)
        $(this).css('background-position', 'right -89px');
      else
        $(this).css('background-position', 'right 5px');
    }
  });
 });
