﻿$(function () {
    $(".reportArchive").hide();
    $(".reportArchiveLink").click(function () {
        $(this).parent().siblings(".reportArchive").slideToggle("fast");
    });    
});

