var HFTLFramework = new Framework({ 

		'autostart': false,
		tooltips: {
			'active': true,  // 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': 'vcard'	// string or false, that filters the class of all links
			},
			'help': true,  // activate tooltips for links to the help-system (rel="help")
			'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': '300',  // delay value for hiding tooltips in ms 
				'auto': true	// let the tooltips hide automatic
			}
			
		},
	
		/* set the predefined texts for search-fields, login-fields, ... */
		predefined: {

			'searchquery': 'Suchbegriffe &hellip;',
			'login': 'Loginname &hellip;'

		},
		
		sidebar: { 
			'active': true,
			'defaultStatus': 'close',  // set default status of the sidebar ('close', 'max', false)
			'overlay': {
				'active': true,	 // let the sidebar overlay the content with transparent border
				'right': false,  // 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
			},
			'hover': false  // activate hovering for the sidebar
			
		},
		
		
		ajaxbox: {
			'active': true,
			'ajaxbox': 'ajaxbox',
			'ajaxbox-meta': 'ajaxbox-meta',
			'ajaxboxcontent': 'ajaxboxcontent',
			'synconload': true,
			'onLoadReady': function (boxId) {  // do this after reloading the content of a box via AJAX
				HFTLFramework.refreshTooltips('#' + boxId);
			}
		}
		
});
