// OKAY I want you to be able to click on "read more" 
// and it toggles both the div you're clicking in, and also
// the div you want shown.
function swap_text(trout, smelt) {
    $("#"+trout).toggle();
    $("#"+smelt).toggle();
}

