$(document).ready(function() {
    $(".toggle_links .toggle").click(function() {
        $(this).next(".hidden").toggle();
    }).mouseover(function() {
        $(this).css("text-decoration", "underline");
    }).mouseout(function() {
        $(this).css("text-decoration", "none");
    });
});
