[jQuery] loop through div

[jQuery] loop through div


how can i loop through each div on a page and have them appear one by
one
i am trying
var arrayList2 = $.makeArray(document.getElementsByClassName
(".type"));
                        $.each(arrayList2,function() {
                            $(this).show();
                        });
thanks
-tj