jQuery(document).ready(function(){
		jQuery('#slideshow').cycle({
		    timeout: 6800,
			delay: -800,
			speed:  800,
			pager: '#punkte',
			next: '#vor',
			pagerClick: onPagerClick
		}).css("visibility","visible"); 

		function onPagerClick() {
			jQuery('#slideshow').cycle('pause');
		}
		
		jQuery("#plant_full, #unesco_full, #dekade_full, #thecode_full, #undecade_full, #charta_full, #eco_full").css("visibility","visible").hide();
		jQuery.fn.qtip.defaults.style = {name: 'bsfl', text: { 'font-size': 12 } };
		
		//******* TOOLTIP ist Rechts vom Mauszeiger
		jQuery.fn.qtip.defaults.position.corner.target = 'LeftMiddle';
		jQuery.fn.qtip.defaults.position.corner.tooltip = 'bottomLeft';
		jQuery('#unesco').qtip({content: {text: jQuery("#unesco_full")}});
		jQuery('#plant').qtip({content: {text: jQuery("#plant_full")}});
		jQuery('#dekade').qtip({content: {text: jQuery("#dekade_full")}});
		jQuery('#thecode').qtip({content: {text: jQuery("#thecode_full")}});
		jQuery('#undecade').qtip({content: {text: jQuery("#undecade_full")}});	
		jQuery('#charta').qtip({content: {text: jQuery("#charta_full")}});	
		jQuery('#eco').qtip({content: {text: jQuery("#eco_full")}});		

	});

