// JavaScript Document

$(function(){

            $('#primary').masonry({
                columnWidth: 100, 
                animate: true, 
                animationOptions: {
                    // duration: 1000,
                    // easing: 'linear',
                    // specialEasing: { top: 'linear'},
                    // queue: false
                }
            });

            // call masonry then add class so transitions
            // apply after the first arrangement
            $('#secondary').masonry({ columnWidth: 100 });

        });
