I have the most basic jquery function of them all, but I couldn\'t find a way in the documentation to trigger the contents of this click function after say 1500 milliseconds
You can do it with regular javascript using setTimeout().
$('.masonryRecall').click(function(){ setTimeout("$('#mainContent').masonry()", 1500); });