$(document).ready(function() {
   // toggles the more_info box on clicking the More Info &darr; link 
   $('.toggle').click(function(){
     if ($(this).next('blockquote').length > 0) {
        $(this).next('blockquote').toggle(400);
        $(this).toggleClass("up").toggleClass("down");
     } else if ($(this).next('.toggle_content').length > 0) {
        $(this).next('.toggle_content').toggle(400);
        $(this).toggleClass("up").toggleClass("down");
     }
     return false;
   }).toggleClass("down");
   
   //hide the div's to begin with
   $('.toggle').next().hide().addClass("toggle_content");
   $('.toggle:first').toggleClass("up").toggleClass("down").next().show();
});
//---------------------------------------
function _debug ($string) {
   try {
      console.log($string);
   } catch (err) {}
}