$(function() {
    $(".eNewsletter-sectionLink").click(function() {
        $(".eNewsletter-section").hide();
        var theId = $(this).attr("id");
        $("#eNewsletter-section-" + theId.substring((theId.lastIndexOf("-") + 1), theId.length)).show();
    });
    
    $(".eNewsletter-articleContainer").mouseover(function() {
        if ($(this).find('img').size() > 0) {
            $('.eNewsletter-articleDetailContainer img').attr('src', $(this).find('img').attr('src').replace('small', 'large'));
        }
    });
});