// Detect the unsupported browsers. Done to avoid crashing a browser.
if (jQuery.browser.safari == true && jQuery.browser.version <= 419.3)
{
	// Drop jQuery and therefore any unwanted crashes.
	jQuery.noConflict();
	window.$ = function() {
		return {
			ready: function(){},
			load: function(){}
		};
	};
}

