
var debugModus		= 1; // Debugmodus EIN = 1 || AUS = 0
var firebugLight	= 0; // Firebug light EIN = 1 || AUS = 0
if(firebugLight)	{ document.write("<script type='text/javascript' src='http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js'></script>"); }

/**
 * 
 * @param string txt
 */
function debug(txt)
{
	if(!debugModus || typeof(console) != "object") { return; }
	else { console.log(txt); }
}
debug("debugModus = on");
