I'm trying to figure out how to fade in my links one at a time. I could fade them all in, but I just want the aesthetics of one at a time. I'd even love to have them all slide out one at a time from one another, but I understand that is difficult. At least for me to go about writing. This is just a excerpt from my code handling the navigation.
$(document).read(function () {
    $.each(['#href1',
            '#href2',
            '#href3',
            '#href4',
            '#href5'], function (i, l) {
        $(l).fadeTo('slow', 1.0).delay(200);
    });
});
 
     
     
    