﻿$(document).ready(function() {
    $('#articles-landing').each(function() {
        var block = $(this).find('.block');

        $(this).find('a.link').each(function(index) {
            $(this).click(function() {
                block.hide();
                block.eq(index).show();
                return false;
            });
        });
    });
});
