/**
 * Global Javascript
*/



/**
 * jQuery Wrapper
 *
 * Allows the use of the dollar sign insted of jQuery when other
 * libraries or scripts are included and are using the dollar sign.
*/

(
	
	function( $ )
	{
		
		/**
		 * jQuery onDocument Ready
		*/
		
		$(document).ready(
			
			function()
			{
				
			}
			
		);
	}
	
) ( jQuery );
