$(document).ready(function() {                 
   $("#defaulthide p, #defaulthide ul").hide();
   $(".subhead").show();                 
   $("h3").click( function() {                 
      if($(this).next('.' + $(this).attr("id")).is(":visible"))                 
         $('.' + $(this).attr("id")).hide();                 
      else                
         $('.' + $(this).attr("id")).show();               
   })                 
   $(".expand").click( function() {                 
      alert($(this));  
      alert($(this).next);  
      alert($(this).parent);  
      if($($(this).parent).next('.' + $(this).attr("id")).is(":visible"))                 
         $('.' + $(this).attr("id")).slideUp(400);                 
      else                 
         $('.' + $(this).attr("id")).slideDown(400);                
   });                 
   /*$("AREA").click( function() {                 
      if($(this).next('.' + $(this).attr("id")).is(":visible"))                 
         $('.' + $(this).attr("id")).slideUp(400);                 
      else                 
         $('.' + $(this).attr("id")).slideDown(400);                
   });*/                 
});
