
 jQuery(function($){

   var target=$("dl","#specialList"); 

   $("#specialBtn").click(function () {
     if (target.is(":hidden")) {
        target.slideDown("fast");
     } else {
        target.slideUp("fast");
     }
   })
 });


