(function( window, document, req_version, callback, $, script, done, readystate ) {

		// If jQuery isn't loaded, or is a lower version than specified, load the
		// specified version and call the callback, otherwise just call the callback.
		if ( !($ = window.jQuery) || req_version > $.fn.jquery || callback( $ ) ) {

			// Create a script element.
			script = document.createElement( 'script' );
			script.type = 'text/javascript';

			// Load the specified jQuery from the Google AJAX API server (minified).
			script.src = 'http://ajax.googleapis.com/ajax/libs/jquery/' + req_version + '/jquery.min.js';

			// When the script is loaded, remove it, execute jQuery.noConflict( true )
			// on the newly-loaded jQuery (thus reverting any previous version to its
			// original state), and call the callback with the newly-loaded jQuery.
			script.onload = script.onreadystatechange = function() {
				if ( !done && ( !( readystate = this.readyState )
				|| readystate == 'loaded' || readystate == 'complete' ) ) {
					callback( ($ = window.jQuery).noConflict(1), done = 1 );
					$( script ).remove();
				}
			};

			// Add the script element to either the head or body, it doesn't matter.
			document.documentElement.childNodes[0].appendChild( script );
		}
	})( window, document,
	// Minimum jQuery version required. Change this as-needed.
	'1.5.2',
	function( $, L ) {
		window.jQuery = window.$ = $;
		$(document).ready(function() {
			$.get("http://www.uindy.edu/toolbar_nav", function(data){
				data = $(data).find('img[src^="/"]').each(function() {
					var el = $(this)
					  , src = el.attr('src')
					  ;
					el.attr('src', 'http://www.uindy.edu' + src);
				})
				.end()
				.find('a[href^="/"]').each(function() {
					var el = $(this)
					  , href = el.attr('href')
					  ;
					el.attr('href', 'http://www.uindy.edu' + href);
				})
				.end();
				$.getScript('http://www.uindy.edu/min/g=external_menu');
				$('#uindy-main-toolbar').html(data);
			});
		});
	});
