$(document).ready(function(){
  $('.pulldown-title h3').bind('click', function(){
    var imgsrc = ($(this).parent().children().last().css('display')=='none') ? "url('files/minus.gif')" : "url('files/plus.gif')";
    $('div:animated').stop(true, true);
    $(this).parent().children().last().toggle('blind');
    $(this).css('backgroundImage', imgsrc);
    return false;
  });
});

function debug(obj){
  var s = '';
  if(typeof obj=='object' || typeof obj=='array'){
    for(var key in obj){
      s += key + ' = ' + obj[key] + '\n';
    }
  } else {
    s = obj
  }
  $('#debug').html(s);
}

