What is the difference between these two:
$(function () { // do stuff });
AND
(function () { // do stuff })();
one is a jquery $(document).ready function and the other is just an anonymous function that calls itself.
$(document).ready