$(document).ready(function() {
    var link = $(".jsShowHide");

    link.next().next().css("display", "none");
    link.css({ 'display': 'block', 'cursor': 'pointer', 'margin-top': '8px', 'text-decoration': 'underline'});

    link.click(
        function() {
            $(".jsShowHide").next().next().css("display", "none");
            $(this).next().next().css("display", "block");
        }
    );
    
    /*
    link.hover(
        function() {
            $(this).css("color", "#7f8080");
        },
        function() {
            $(this).css("color", "#C8D128");
        }
    );*/
});