window.addEvent('domready', function()
{
   $$(".toggle").addEvent('click',function()
   {
      if ($(this).getNext('blockquote')) {
         $(this).getNext('blockquote').toggleClass('hidden');
         $(this).toggleClass("up").toggleClass("down");
      } else if ($(this).getNext('.toggle_content')) {
         $(this).getNext('.toggle_content').toggleClass('hidden');
         $(this).toggleClass("up").toggleClass("down");
      }

      return false;
   }).toggleClass("down");

   //hide the div's to begin with
   $$('.toggle').getNext('blockquote').addClass("hidden").addClass("toggle_content");
   //if(!$('.toggle:first').hasClass('init_hide')) $('.toggle:first').toggleClass("up").toggleClass("down").next().show();
});
//---------------------------------------
function _debug ($string) {
   try {
      console.log($string);
   } catch (err) { 
      //$("#footer").append($string + "<div class='hr'><hr /></div>"); 
   }
}
