$(document).ready(function() {
          $('#toggleButton').click(function() {
               if ($('#toggleSection').is(":hidden"))
               {
                    $('#toggleSection').slideDown("slow");
               } else {
                    $('#toggleSection').slideUp("slow");
               }
          });
          
          $("#wrapper").dropShadow({left: 0, top: 0, opacity: 0.2, blur: 3});
     });
