// Release $() back to MooTools for legacy scripts.
jQuery.noConflict();

// Configure ajax requests via the jQuery ajax apparatus on a global scale.
jQuery.ajaxSetup({
	// cache is default true for all types of ajax requests except scripts and json.
	// Setting it to true here forces caching to be true always.
	// This prevents "&_=(large integer)" from being appended to the URL of JSON and JS files which are dynamically loaded.
	cache: true
});
