
$(document).ready(function() {
    $(".openMamblog").click(function() {
        var jqueryKey = $(this).attr('rel');
        $(".mamblog_old_entries_close[rel=" + jqueryKey + "]").hide();
        $(".mamblog_old_entries_open[rel=" + jqueryKey + "]").show();
        return false;
    });
    $(".closeMamblog").click(function() {
        var jqueryKey = $(this).attr('rel');
        $(".mamblog_old_entries_open[rel=" + jqueryKey + "]").hide();
        $(".mamblog_old_entries_close[rel=" + jqueryKey + "]").show();
        return false;
    });
});

