﻿// default page load for archives site
//  make TOC calendar heads clickable
    
$(document).ready(function() { 

$('.issuehead:last').css('border-bottom', 'none');
$('li:last-child').css('border-bottom', 'none');
$('.issuetoc:last').css('border-bottom', 'none');

$('.issuehead').click(function() {
var $tocstatus =  $(this).next('.issuetoc').css('display');


if ($tocstatus == 'block') { 
    $(this).next('.issuetoc').addClass('hidden');
    $('p').removeClass('downarrow');
    $('.issuehead:last').css('border-bottom', 'none');

    
} else {
    $('.issuetoc').addClass('hidden');
    $('p').removeClass('downarrow');   
     
    $(this).next('.issuetoc').removeClass('hidden');
    $(this).addClass('downarrow');

    $(this).css('border-bottom', '1px solid #ddd');
    
} 

});
 
 
});

