$( document ).ready( function() {
    init_teasers()
})

function init_teasers() {
    $( 'a.teaser' ).each( function() {
        var href = $( this ).attr( 'href' )
        $( this ).closest( 'article' )
            .addClass( 'affordance' )
            .click( function() { window.location = href } )
    })
}

