Show boxes after each other

Show boxes after each other

how do i show elements with the same class after each other (/animate not at the same time)?

currently i do this:

$(document).ready(function(){
   $(".column").slideDown("slow");
})


I figure out i need to use some kind of recursion, but i'm not familiar enough with javascript to do this...