if (debug) {
	window.onload = allInit;
	if ($.browser.mozilla) {
		//alert("mozilla");
	} else {
		firebug.env.height = 200;
	}
} else {
	//window.onload = allInit;
	$(document).ready(function() {
	   allInit();
	});
}
/*
// jQuery extension from book jQuery in Action
$.fn.getClassNames = function() {
	if (name = this.attr("className")) {
		return name.split(" ");
	}
	Else {
		return [];
	}
};
*/
