function MadChickCss()  {

	/* **********************************************************************
	 *
	 * Einbindung:
	 * ===========
	 * <script language="JavaScript" type="text/JavaScript" src="http://tux/_ceasy4/madChickCss/js/madChickCss.class.js"></script>
	 *
	 * Verwendungs-Beispiele:
	 * ======================
	 *
	 * Größenumschlatung:
	 * <a href="javascript:madChickCss.add('large');">Schrift groß</a>
	 * <a href="javascript:madChickCss.remove('large');">Schrift standard</a>
	 *
	 * Farbwechsel:
	 * <a href="javascript:madChickCss.swap('color', 'bow');">Farbe</a>
	 * <a href="javascript:madChickCss.swap('bow', 'color');">Schwarz auf Weiss</a>
	 *
	 *
	 *************************************************************************/
	this.addParameterName='madChickCssAdd';
	this.removeParameterName='madChickCssRemove';
	this.stylesheets= new Array();

	/*********************/
	/*    public         */
	/*********************/

	//-----------------------------------------------------------------------------
	this.swap=function(addSets, removeSets)  {

		// Schaltet die in addSets aufgeführten Styles (getrennt durch |) ein
		// und die in removeSets aufgeführten Sets aus

		document.cookie=this.addParameterName+'='+addSets+'; path=/;'+(addSets ? '' : ' expires=Fri, 31 Dec 1999 23:59:59 GMT;');
		document.cookie=this.removeParameterName+'='+removeSets+'; path=/;'+(removeSets ? '' : ' expires=Fri, 31 Dec 1999 23:59:59 GMT;');
		document.location.reload();

	}

	//-----------------------------------------------------------------------------
	this.add=function(sets)  {

		// Schaltet zusätzlich zu den bereits vorhandenen die in sets aufgeführten
		// Styles (getrennt durch |) ein

		document.cookie=this.addParameterName+'='+sets+'; path=/;';
		document.cookie=this.removeParameterName+'=; path=/;  expires=Fri, 31 Dec 1999 23:59:59 GMT;';
		document.location.reload();

	}

	//-----------------------------------------------------------------------------
	this.remove=function(sets)  {

		// Schaltet die in sets ausgeführten Styles (getrennt durch |) aus

		document.cookie=this.removeParameterName+'='+sets+'; path=/;';
		document.cookie=this.addParameterName+'=; path=/; expires=Fri, 31 Dec 1999 23:59:59 GMT;';
		document.location.reload();

	}


}

var madChickCss= new MadChickCss();