﻿/*
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
clientLib Global Configuration File: Global config settings
Each of these can be overridden locally in the page's local config block!
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
*/

// Enter the rounded file size of clib_globalconf.js here (integer)
var clib_globalconf_filesizeK = 27;

/* ---------------------------------------------------------------------- *\
   Core Module (clib_core)
\* ---------------------------------------------------------------------- */

// Document domain setting; optional
// String; globally sets a SLD or a subdomain and therefor enables cross-subdomain
// scripting; works only throughout the same SLD (i.e. world-direct.at)!
// Possible values: '[SLD string]' or 'SAME' or ''
var cL_domain='';

// Debugging
// Boolean; set to true to activate the clientLib debug window
// Will be overridden by URL parameter string 'cL_debug=true'
var cL_Debug=false;

// Global modules to load
// Modules defined here will be loaded globally; same format as the per-page property cL_ModulesToLoad
var cL_GlobalModulesToLoad='';

// Language Code (ISO)
// Used by certain modules to choose output formats and language
// Possible formats: 'xx', 'xxx', '_xxx' (case insensitive)
var cL_language='de';

// Country Code (ISO)
// Used by certain modules to choose output formats and language
// Format: 'xx'
var cL_country='';

// Either include the CSS stylesheets or not
var cL_IncludeStylesheets=true;

// Browser selection
	// Boolean; set to true to redirect Opera 7 to the URL specified in cL_DenyURL
	var cL_DenyOpera=false;
	// Boolean; set to true to redirect all Gecko browsers to the URL specified in cL_DenyURL
	var cL_DenyGecko=false;
	// Boolean; set to true to redirect Gecko browsers below version 1.0 to the URL specified in cL_DenyURL
	var cL_DenyGeckoBefore1=false;
	// Boolean; set to true to redirect every version of Internet Explorer to the URL specified in cL_DenyURL
	var cL_DenyIE=false;
	// Boolean; set to true to redirect Internet Explorer version prior to 5.5 (Win) to the URL specified in cL_DenyURL
	var cL_DenyIE50=false;
	// Boolean; set to true to redirect Internet Explorer versions prior to 6 to the URL specified in cL_DenyURL
	var cL_DenyIEMac=true;
	// Boolean; set to true to redirect Internet Explorer on MacOS to the URL specified in cL_DenyURL
	var cL_DenyIE55=false;
	// Boolean; set to true to redirect Safari to the URL specified in cL_DenyURL
	var cL_DenySafari=false;
	// URL to redirect all denied browsers to
	var cL_DenyURL='errorpage.html';

// Inclusion of external CSS files
  // Cross-browser clientLib CSS (for better separation)
  var cL_ClibCssFileName='/fileadmin/dev/css/clib.css';
	// To be included by all browsers
	var cL_CssFileName='/fileadmin/dev/css/all.css';
	// to be included by Opera
	var cL_OperaCssFileName='/fileadmin/dev/css/op.css';
	// To be included by Internet Explorer on Windows
	var cL_IECssFileName='/fileadmin/dev/css/ie.css';
	// To be included by Internet Explorer on Mac
	var cL_IEMacCssFileName='/fileadmin/dev/css/ie.css';
	// To be used by Gecko on non-Mac OS
	var cL_GeckoCssFileName='/fileadmin/dev/css/ge.css';
	// External CSS file to be used by Gecko on Mac OS
	var cL_GeckoMacCssFileName='/fileadmin/dev/css/ge.css';
	// External CSS file to be used by other browsers
	var cL_SafariCssFileName='/fileadmin/dev/css/ge.css';
	// External CSS file to be used by other browsers
	var cL_OtherCssFileName='/fileadmin/dev/css/ge.css';

// cLib module paths
// Both default to 'clib/' if not set or empty
// If these paths differ, the debug console is not available anymore!
var cL_globalModulePath=''; // Path to all NOT CUSTOMIZABLE module and debug files
var cL_localModulePath='/fileadmin/dev/scripts/'; // Path to CUSTOMIZABLE data and config files
												// This path will currently be used for the files matching this pattern:
												// clib_form_textelements_*.js
												// *_config.js

// cLib image path; all module's image file names are relative to this path
	// String including trailing slash
	var cL_ImagePath='/fileadmin/dev/img/clib/';

// Remove default margins and paddings from the BODY tag
  // Boolean; if true, no BODY topmargin=0, rightmargin=0 etc. is necessary in the HTML
  var cL_BodyPreparation=true;

/* ---------------------------------------------------------------------- *\
   Session Timeout Alerter Module (clib_time)
\* ---------------------------------------------------------------------- */

// Client-side Session timeout value; should be the same value as the server-side timeout minus 1 minute
// Numeric; session timeout time in seconds; deactivate timeout by setting value to -1
var cL_ti_sessionTimeLeft=6000;

// URL to redirect out-timed sessions to
var cL_ti_redirectionURL='timeoutpage.html';

// Alert texts (to be dynamically overriden in the local configuration block)
	// Text for the parent window
	var cL_ti_timeoutTextParent='Deine Sitzung ist abgelaufen und Du wurdest abgemeldet. Bitte klicke auf Abbruch, wenn Du Fensterinhalte mit Hilfe der Zwischenablage sichern willst. Wenn Du Dich neu einloggen willst, klicke stattdessen auf OK.';
	// Text for a child window
	var cL_ti_timeoutTextChild='Deine Sitzung ist abgelaufen und Du wurdest abgemeldet. Bitte klicke auf Abbruch, wenn Du Fensterinhalte dieses Fensters mit Hilfe der Zwischenablage sichern willst. Wenn Du dieses Fenster schliessen und dich neu einloggen willst, klicke stattdessen auf OK.';

/* ---------------------------------------------------------------------- *\
   Communication Module (clib_comm)
\* ---------------------------------------------------------------------- */

/* ---------------------------------------------------------------------- *\
   Formengine Module (clib_form)
\* ---------------------------------------------------------------------- */

// Image file names
	// Message window background image
	var cL_fo_BgFilename='fo_bg.gif';
	// OK button image
	var cL_fo_OkFilename='fo_ok.gif';
	// Cancel button image
	var cL_fo_CancelFilename='fo_cancel.gif';

// Colors
	// Border color to use if border is true (HTML/CSS notation)
	var cL_fo_BorderColor='black';
	// Color to use if no message window background image is defined and color is true (HTML/CSS notation)
	var cL_fo_BgColor='cyan';

// Border
	var cL_fo_BorderColor='red';

// CSS classes
	// CSS class name for the message window (optional)
	var cL_fo_formengineStyle='formengine';
	var cL_fo_bodyStyle='formengine_body'; // only valid in forceNewBrowser mode

/* ---------------------------------------------------------------------- *\
   Dynamic Window Module (clib_dwin)
\* ---------------------------------------------------------------------- */

// Message window button texts, CSS class and padding
  // OK button; string
  var cL_dw_okButtonText='OK';
  // Cancel button; string
  var cL_dw_cancelButtonText='Cancel';
  // Buttons CSS class
  var cL_dw_buttonClass='button_60';
  // Padding between message content, button and message window bottom border in pixels; numeric
  var cL_dw_buttonRowsPadding=3;

// Message window text layout
	// Color for the message text (HTML/CSS notation)
	var cL_dw_messageTextColor='';
	// Background color for the message window (HTML/CSS notation); defaults to system
	var cL_dw_messageBgColor='';
	// Background image for the message window; full relative path needed
	var cL_dw_messageBackground='';
	// Padding between text and border
	var cL_dw_messagePadding=0;
	// Border width (HTML notation);
	var cL_dw_messageBorderWidth=2;
	// Border color (HTML/CSS notation); defaults to system
	var cL_dw_messageBorderColor='';

// Message window title layout
	// Background color for the message title (HTML/CSS notation); defaults to system
	var cL_dw_messageTitleBgColor='';
	// Text color for the message title (HTML/CSS notation); defaults to system
	var cL_dw_messageTitleTextColor='';
	// Maximum height for the message title (HTML notation)
	var cL_dw_messageTitleHeight=20;
	// Background color for the Close symbol ('X') (HTML/CSS notation); defaults to system
	var cL_dw_messageTitleCloseBgColor='';
	// Color for the close X (HTML/CSS notation); defaults to system
	var cL_dw_messageTitleCloseColor='';
	// Border color for the Close symbol ('X') (HTML/CSS notation); defaults to system
	var cL_dw_messageTitleCloseBorderColor='';

// Modal disabler element layout
	// Color for the modal disabler element (HTML/CSS notation)
	var cL_dw_modalDisablerBgColor='#808080';
	// Opacity level for the modal disabler element in %
	var cL_dw_modalDisablerOpacity=50;

/* ---------------------------------------------------------------------- *\
   Imagehandling Module (clib_imag)
\* ---------------------------------------------------------------------- */

/* ---------------------------------------------------------------------- *\
   Tooltip Module (clib_ttip)
\* ---------------------------------------------------------------------- */

/* ---------------------------------------------------------------------- *\
   Dateselect Module (clib_dats)
\* ---------------------------------------------------------------------- */

/* ---------------------------------------------------------------------- *\
   Stretchiframe Module (clib_stre)
\* ---------------------------------------------------------------------- */
// Working mode; string;
//		'auto' or empty string: old method of manual measuring, no measuring element needed
//		'element': content to measure must be wrapped into a DIV with the ID
//					given in cL_st_measureElementId, whose height will then be taken
var cL_st_mode='auto';
// ID for the element whose offset will be taken in 'element' mode
var cL_st_measureElementId='';

/* ---------------------------------------------------------------------- *\
   Switchhttps Module (clib_htps)
\* ---------------------------------------------------------------------- */
// Test environment settings; two different test environments can be configured
	// Port numbers; numeric
	var cL_ht_internalTestSSLPort='';
	var cL_ht_externalTestSSLPort='';
	// Host names; strings; complete URL (subdomain and hostname), without protocol prefix
	var cL_ht_internalTestHostname='';
	var cL_ht_externalTestHostname='';

/* ---------------------------------------------------------------------- *\
   Editor Module (clib_edit)
\* ---------------------------------------------------------------------- */

// CSS style; has no influence on the textarea as shown on Gecko <1.3 and Opera (optional)
var cL_ed_editorStyle='font-family:verdana,arial,helvetica,sans-serif;font-size:8pt;color:#333333;';
// CSS style for the InsertHTML window
var cL_ed_insertHTMLWindowStyle='font-family:courier new, courier;font-size:8pt;color:black;background-color:buttonface;';
// Editor toolbar CSS classes
	var cL_ed_buttonClass='editor_button';
	var cL_ed_buttonOnmouseoverClass='editor_button_onmouseover';
	var cL_ed_buttonOnmousedownClass='editor_button_onmousedown';

// LINK colors (HTML notation); sets the user-created links's colors
	// Link
	var cL_ed_linkColor='#c9bf8e';
	// Visited link
	var cL_ed_vLinkColor='#c9bf8e';
	// Active link
	var cL_ed_aLinkColor='#c9bf8e';

// LINK target (HTML notation); user-created links will be created with this target attribute
	// String in HTML notation
	var cL_ed_createLinkTarget='_blank';

// User-created table attributes
	// Cellspacing (numeric)
	var cL_ed_tableCellSpacing=0;
	// Cellpadding (numeric)
	var cL_ed_tableCellPadding=0;
	// Border default color (HTML/CSS notation)
	var cL_ed_tableBorderColor='red';
	// Background colors for table and cell (HTML/CSS notation)
	var cL_ed_tableBgColor='';
	var cL_ed_tableTdBgColor='';
	// Texts for table rows and columns prompts
	var cL_ed_CreateTableRowsText='Anzahl der Spalten';
	var cL_ed_CreateTableColsText='Anzahl der Zeilen';
	var cL_ed_CreateTableBorderText='Rahmenbreite in Pixel';
	// Default values for rows and cols; numeric
	var cL_ed_CreateTableRowsDefault=3;
	var cL_ed_CreateTableColsDefault=5;

// User-modifyable document background color
// Will be posted back in a hidden field named '[fieldname]_bgcolor'
	var cL_ed_UserDocBodyBgColor='';

// Button image file names; expected to be GIFs with transparent backgrounds
	var cL_ed_btBoldFileName='ed_but-bold.gif'; // bold
	var cL_ed_btUnderlineFileName='ed_but-underline.gif'; // underline
	var cL_ed_btItalicFileName='ed_but-italic.gif'; // italic
	var cL_ed_btLinkFileName='ed_but-createlink.gif'; // insert link URL
	var cL_ed_btLeftFileName='ed_but-left.gif'; // align left
	var cL_ed_btCenterFileName='ed_but-center.gif'; // align center
	var cL_ed_btRightFileName='ed_but-right.gif'; // align right
	var cL_ed_btNumberedlistFileName='ed_but-numberedlist.gif'; // create numbered item list
	var cL_ed_btBulletlistFileName='ed_but-bulletlist.gif'; // create bulleted item list
	var cL_ed_btInsertImageFileName='ed_but-imagelink.gif'; // insert image URL
	var cL_ed_btCreateTableFileName='ed_but-table.gif'; // create table
	var cL_ed_btBackcolorFileName='ed_but-color.gif'; // choose background color
	var cL_ed_btForecolorFileName='ed_but-colortext.gif'; // choose text color
	var cL_ed_btTablecolorFileName='ed_but-colortable.gif'; // choose table color
	var cL_ed_btInsertHTMLFileName='ed_but-html.gif'; // insert HTML fragment

// Button image tooltip texts; Strings
	var cL_ed_btBoldText='Fett'; // bold
	var cL_ed_btUnderlineText='Unterstrichen'; // underline
	var cL_ed_btItalicText='Kursiv'; // italic
	var cL_ed_btLinkText='Link-URL'; // insert link URL
	var cL_ed_btLeftText='Links ausrichten'; // align left
	var cL_ed_btCenterText='Zentriert'; // align center
	var cL_ed_btRightText='Rechts ausrichten'; // align right
	var cL_ed_btNumberedlistText='Nummerierte Liste'; // create numbered item list
	var cL_ed_btBulletlistText='Liste'; // create bulleted item list
	var cL_ed_btInsertImageText='Bild-URL'; // insert image URL
	var cL_ed_btCreateTableText='Tabelle erzeugen'; // create table
	var cL_ed_btBackcolorText='Neue Hintergrundfarbe'; // change document bg color
	var cL_ed_btForecolorText='Neue Textfarbe'; // change text color
	var cL_ed_btTablecolorText='Neue Tabellenrahmenfarbe'; // change table border color
	var cL_ed_btInsertHTMLText='HTML-Fragment injizieren'; // insert HTML fragment

// Editor command item visibilities; Boolean; set items not to be included in the toolbar to false
	var cL_ed_btBoldIsVisible=true; // bold button
	var cL_ed_btUnderlineIsVisible=true; // underline button
	var cL_ed_btItalicIsVisible=true; // italic button
	var cL_ed_btLinkIsVisible=true; // insert link URL button
	var cL_ed_btLeftIsVisible=true; // align left button
	var cL_ed_btCenterIsVisible=true; // align center button
	var cL_ed_btRightIsVisible=true; // align right button
	var cL_ed_btNumberedlistIsVisible=true; // create numbered item list button
	var cL_ed_btBulletlistIsVisible=true; // create bulleted item list button
	var cL_ed_btInsertImageIsVisible=true; // insert image URL button
	var cL_ed_btCreateTableIsVisible=true; // create table button
	var cL_ed_btCreateFontSizeIsVisible=true; // font sizes select
	var cL_ed_btCreateFontNameIsVisible=true; // font name (family) select
	var cL_ed_btBackcolorIsVisible=true; // color button
	var cL_ed_btForecolorIsVisible=true; // color button
	var cL_ed_btTablecolorIsVisible=true; // color button
	var cL_ed_btInsertHTMLIsVisible=true; // insert HTML button

// Smiley control fields
	// Smiley image file names and their strings
	var cL_ed_smileyFile = new Array(); var cL_ed_smileyString=new Array(); // Don't modify this line
	// For each smiley icon, expand the array by one instance containing a string:
	// the new icon's file name and a corresponding smiley string for browsers without WYSIWYG editing; comma as separator
	cL_ed_smileyFile[0]='ed_smi-biggrin.gif,:D';
	cL_ed_smileyFile[1]='ed_smi-smile.gif,:)';
	cL_ed_smileyFile[2]='ed_smi-frowin.gif,:(';
	cL_ed_smileyFile[3]='ed_smi-eek.gif,:o';
	cL_ed_smileyFile[4]='ed_smi-confused.gif,:-?';
	cL_ed_smileyFile[5]='ed_smi-cool.gif,8)';
	cL_ed_smileyFile[6]='ed_smi-lol.gif,:lol:';
	cL_ed_smileyFile[7]='ed_smi-mad.gif,:x';
	cL_ed_smileyFile[8]='ed_smi-razz.gif,:P';
	cL_ed_smileyFile[9]='ed_smi-redface.gif,:oops:';
	cL_ed_smileyFile[10]='ed_smi-cry.gif,:cry:';
	cL_ed_smileyFile[11]='ed_smi-evil.gif,:evil:';
	cL_ed_smileyFile[12]='ed_smi-rolleyes.gif,:roll:';
	cL_ed_smileyFile[13]='ed_smi-wink.gif,:wink:';
	cL_ed_smileyFile[14]='ed_smi-mrgreen.gif,:green:';
	cL_ed_smileyFile[15]='ed_smi-fies.gif,:fies:';
	// Cellspacing for the smiley table (HTML notation); numeric value
	var cL_ed_smileySpacing=1;
	// Cellpadding for the smiley table (HTML notation); numeric value
	var cL_ed_smileyPadding=1;
	// Amount of columns for the smiley table (HTML notation); numeric value
	// (Corresponding rows value will be calculated depending on the total amount of smileys)
	var cL_ed_smileyColumns=5;
	// CSS class name for the smiley table (optional)
	var cL_ed_smileyTableStyle='editor_smileytable';
	// CSS class name for the smiley table cells (optional)
	var cL_ed_smileyTdStyle='editor_smileytd';
	// CSS class name for the character counter table cell (optional)
	var cL_ed_charcountTdStyle='editor_charcounter';

// Maxchar deathloop cut text (no HTML)
	// String; #maxchars# is a placeholder; the function inserts the defined maxchars value here
	var cL_ed_maxcharDeathloopCutText='Nur maximal #maxchars# Zeichen sind erlaubt.\nAutomatisches, genaues Beschneiden des HTML-Inhalts wird erneut versucht.\nFalls das genaue Beschneiden erfolglos ist, wird der Inhalt um 100 weitere Zeichen beschnitten.\nDas Layout kann dabei wahrscheinlich nicht im Originalzustand erhalten werden.\nKlicke auf ABBRUCH, um stattdessen den gesamten Inhalt zu entfernen.';

// Prevent WYSIWYG mode
// Boolean; if true, wysiwig mode will not be used on wysiwig-capable browsers
	window.cL_ed_noWysiwyg=false;

/* ---------------------------------------------------------------------- *\
   Calendar Module (clib_cald)
\* ---------------------------------------------------------------------- */

/* ---------------------------------------------------------------------- *\
   Newsticker Module (clib_news)
\* ---------------------------------------------------------------------- */

/* ---------------------------------------------------------------------- *\
   Silktext Module (clib_silk)
\* ---------------------------------------------------------------------- */

/* ---------------------------------------------------------------------- *\
   Keyhandling Module (clib_keys)
\* ---------------------------------------------------------------------- */
// Currently no configuration parameters available for this module!

/* ---------------------------------------------------------------------- *\
   Prevent Back Button Module (clib_back)
\* ---------------------------------------------------------------------- */
// Currently no configuration parameters available for this module!

/* ---------------------------------------------------------------------- *\
   Bottom Bar Module (clib_bbar)
\* ---------------------------------------------------------------------- */
// Currently no configuration parameters available for this module!

/* ---------------------------------------------------------------------- *\
   Dateselect Module (clib_date)
\* ---------------------------------------------------------------------- */
// Currently no configuration parameters available for this module!

/* ---------------------------------------------------------------------- *\
   Switchhttps Module (clib_http)
\* ---------------------------------------------------------------------- */
	var cL_switchToProtocol='';

/* ---------------------------------------------------------------------- *\
   Stretchiframe Module (clib_stre)
\* ---------------------------------------------------------------------- */
// Currently no configuration parameters available for this module!

/* ---------------------------------------------------------------------- *\
   Logoff Module (clib_loff)
\* ---------------------------------------------------------------------- */
// 'Main' logout page URL to be redirected to as soon as all apps are logged out
	var cL_lo_displayURL='logoutpage.html';
// Application logout pages URLs separated by commas ('/mainlogout.aspx,/forum/logout.aspx,/voting/logout.aspx...')
	var cL_lo_executeURLs= 'logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html';
// Visual logout indicator
	// Indicator scaling factor; numueric; 1 = default size (smallest)
	var cL_lo_size=2;
	// Border color; string (HTML/CSS notation), black if empty and border width not 0
	var cL_lo_borderColor='black';
	// Background color; string (HTML/CSS notation), transparent if empty
	var cL_lo_bgColor='#e0e0e0';
	// Indicator bar color; string (HTML/CSS notation), white if empty
	var cL_lo_indicatorColor='red';
	// Delay time for the hard logoff (attempt to close the window) in seconds
	var cL_lo_hardLogoffDelay=10;
	// Text to display for the hard logoff prompt (no HTML)
	var cL_lo_hardLogoffText='Der Logout konnte leider nicht wie vorgesehen automatisch beendet werden. \n\nDieses und alle anderen Browserfenster \nsollten beendet werden, um einen korrekten Log-Out sicherzustellen. \n\nSoll dieses Fenster geschlossen werden?';

/* ---------------------------------------------------------------------- *\
   Colorpicker Module (clib_clor)
\* ---------------------------------------------------------------------- */
	// Background color; string (HTML/CSS notation), white if empty
	var cL_cl_bgColor='ButtonFace';
	// Border color; string (HTML/CSS notation), black if empty
	var cL_cl_borderColor='black';
	// CSS class name for the color value input and display field
	var cL_cl_inputClassName='color_input';
	// Text to display in the 'chosen color' area
	var cL_cl_chosenColorText='Neue Farbe';
	// CSS class name for the color display input and display field
	var cL_cl_chosenColorTextClass='color_display';

/* ---------------------------------------------------------------------- *\
   Image Scaling Module (clib_scim)
\* ---------------------------------------------------------------------- */
	var cL_sc_scalingWidth=240; // numeric; width in pixels to scale the images
	var cL_sc_scalingMode='window'; // string; 'inline' zooms inline, 'window' opens a new window with the image inside

/* ---------------------------------------------------------------------- *\
   Slideshow Module (clib_slid)
\* ---------------------------------------------------------------------- */
	// String, defining images and image texts
	// Format: 'PathAndFilename#1.jpg|DescText#1,PathAndFilename#2.jpg|DescText#2...'
	//			Entries separated by the character or sequence defined in cL_sl_slidesSplitSeq
	//			(Defaults to the comma character, ',')
	//			File name and description text separated by pipe chars
	var cL_sl_Slides='';
	// Slides separation character sequence for cL_sl_Slides; optional; defaults to ',' if not set; must NOT contain a pipe character ('|')!; string
	var cL_sl_slidesSplitSeq='###';
	// Delay interval in seconds; number
	var cL_sl_Interval=3;
	// Auto start flag; Boolean; if set to false, make sure to manually set a SRC as the first image to display
	var cL_sl_Autostart=true;
	// CSS class name for the currently inactive stop or play buttons; string
	var cL_sl_inactiveClassName='slide_inactive';
	// CSS class name for the currently active stop or play button; string
	var cL_sl_activeClassName='slide_active';
	// ID for the IMG element wherein the slideshow runs; string
	var cL_sl_ImageId='slideImage';
	// ID for the DIV or SPAN (or other element) whose innerHTML will be changed to display the description text; string (optional, no desc text shown if empty)
	var cL_sl_TextId='slideText';
	// ID for the DIV or SPAN (or other element) whose innerHTML will be changed to display the slide counter; string (optional, no counter shown if empty)
	var cL_sl_CountId='slideCount';
	// ID for the DIV or SPAN (or other element) wherein the play link resides and whose className will be changed to show active / inactive state; string
	var cL_sl_StartId='slideStart';
	// ID for the DIV or SPAN (or other element) wherein the stop link resides and whose className will be changed to show active / inactive state; string
	var cL_sl_StopId='slideStop';

/* ---------------------------------------------------------------------- *\
   Class Attribute Setter Module (clib_clss)
\* ---------------------------------------------------------------------- */
	var cL_cs_Mods='';

/* ---------------------------------------------------------------------- *\
   PNG Filter Module (clib_rpng)
\* ---------------------------------------------------------------------- */
// Currently no configuration parameters available for this module!

/* ---------------------------------------------------------------------- *\
   CSS Menu Module (clib_menu)
\* ---------------------------------------------------------------------- */
  // Right-align first or last level 2 sub menu with the level 1 button (prevent overflowing); tring
  // 'none' = no aligning (default), 'last' = align level 2 sub menus to last 1st level menu item, 'first' = align level 2 sub menus to first 1st level menu item (reverse order)
  var cL_me_leftPosSubmenuItem='last';
