(function (w) {
	if (w.$) // jQuery already loaded, we don't need this script
		return;
		var _funcs = [];
		w.$ = function (f) { // add functions to a queue
			_funcs.push(f);
		};
		w.defer$ = function () { // move the queue to jQuery's DOMReady
	while (f = _funcs.shift())
	$(f);
		};
})(window);



