﻿$(document).ready(function(){  
$('.content').hide();
 $('.ahref',this).toggle(    
     function () {  
        var id = $(this).attr('href');  
         if($('.box'+id).text() == '') {  
             $(this).addClass('downloadOpen');
             $(this).removeClass('downloadClosed'); 
         } else {   
             $(this).addClass('downloadOpen');
             $(this).removeClass('downloadClosed'); 
             $('.box'+id).slideDown(500);
         }    
    },    
      function () {    
            var id = $(this).attr('href');  
            $(this).addClass('downloadClosed');
            $(this).removeClass('downloadOpen');
            $('.box'+id).slideUp(500);    
       }    
  );  
});    

