 $(document).ready(function() {
   $("#aTorrentFiles").click(function() {
     $("#dTorrentFiles").slideToggle("slow");
     return false;
   });
   
    $("#aDownloadLocations").click(function() {
     $("#dDownloadLocations").slideToggle("slow");
     return false;
   });
 });

