var PnetFramework = new Framework({ 
		'tooltips': {
			'active': false,  // activate the tooltips
			'type': 'link',  // set type of the tooltips: valid values are 'link' or 'icon'
			'parseDom': true,
			'vcard': {
				'active': true,	// activate tooltips for links to the vcard
				'filterRel': 'author',	// string or false, that filters the attribut rel of all links
				'filterUrl': false,	// string or false, that filters the URL of all links
				'filterClass': 'vcardtip'	// string or false, that filters the class of all links
			},
			'help': true,  // activate tooltips for links to the help-system (rel="help")
			'fixed': true,  // true = tooltip not follows the mouse, false = tooltip will follow the cursor
			'filterclass': 'ajaxtt',	// filter given elements by this classname 
			'icon': 'templates/layout_pn/img/icons/preview.png',	// use this icon for the tooltips
			'show': {
				'delay': '300'  // delay value for showing tooltips in ms
			},
			'autohide': true,	// let the tooltips hide automatic
			'hide': { 
				'delay': '800',  // delay value for hiding tooltips in ms, dont make this too small
				'auto': true	// let the tooltips hide automatic
			},
			'loading': {
				'title': 'Lade Tooltipp&hellip;',
				'content': 'Tooltipp wird geladen.'
			},
			'error': {
				'title': 'Fehler&hellip;',
				'content': 'Leider konnte der Tooltipp nicht erfolgreich geladen werden.'
			}
			
		},
	
		/* set the predefined texts for search-fields, login-fields, ... */
		'predefined': {

			'searchquery': 'Suchbegriffe &hellip;',
			'login': 'Loginname &hellip;'

		},
		
		'sidebar': { 
			'active': false,
			'defaultStatus': 'close',  // set default status of the sidebar ('close', 'max', false)
			'overlay': {
				'active': true,	 // let the sidebar overlay the content with transparent border
				'right': true,  // activate the right border
				'bottom': true,  // activate the bottom border
				'left': true,  // activate the left border
				'top': false,  // activate the top border
				'opacity': '0.9'  // set the opacitiy of the overlay
			}
			
		},
		
		
		'ajaxbox': {
			'active': true,	/* activate ajaxboxes*/
			'autoupdate': {
				'active': false,	/* activate the autoupdate-function*/
				'refreshtime': 30	/* refresh time in seconds*/
			},
			'ajaxbox': 'ajaxbox',	/*classname for the ajaxbox-divs*/
			'ajaxbox-meta': 'ajaxbox-meta',	/*classname for the ajaxbox-meta-lists*/
			'ajaxboxcontent': 'ajaxboxcontent',	/*classname for the ajaxboxcontent-divs*/
			'synconload': true,
			'buttons': {
				'reload': false
			},
			'onLoadReady': function (boxId) {  /* do this after reloading the content of a box via AJAX*/
				PnetFramework.refreshTooltips('#' + boxId);
				PnetFramework.refreshTabs('#' + boxId);
				PnetFramework.niceforms.refresh();
			}
		},
		
		'catalognavigation': {
			'active': false,
			'classname': 'editlink',
			'filter': '',
			'image': 'templates/layout_pn/img/application_view_detail.png'
		},
		'filter': {
			'active': false,
			'filterIds': {
				'1': '1', 
				'2': '2'
			},
			'tt': false
		},
		'tabs': {
			'active': true
		},
		'autocomplete': {
			'active': false,
			'inputs': [ 'searchquery', 'newuser', 'namefilter', 'catedit_tags', 'tag', 'adduser' ]
		}
});

