/* -----------------------------------------------------------------------------
  Andrew Abogado
  Initialization Script

  Authored by: www.andrewabogado.com
  Last Edited: 13 January 2012
-------------------------------------------------------------------------------*/


/* Create a closure to maintain scope of the '$' and remain compatible with other frameworks.  */

(function ($) {

	/* @group same as $(document).ready(); event fires when the DOM is ready */
	$(function () {    

	});
	/* @end $(document).ready(); */


	/* @group bind window load. events doesn't fire until the document is fully loaded (images and all) */
	$(window).bind("load", function () {


	});
	/* @end: bind window load */

})(jQuery);

/* =End closure */
