/**
 *
 *	Class Global
 *
 */

Global = function ()
{
	// Public members
	// Note: it's important to set the following values initially
	
	this.paginationStep = 10;
//	this.logLevel = 0;
	
	// Markus / 12-08-08: Wird eine Aktion A durch eine andere Aktion B unterbrochen (wie z.B. das Anlegen eines earthfaves durch das notwendige Anmelden), 
	//	so wird Aktion A nach erfolgreichem Ende von Aktion B weitergef�hrt;
	//	Aktion A wird in global.action vermerkt.
	this.action = "";
	this.firebugDisabled = false;
}

//console.log("global.js geladen");
