
// BEGIN TIPS
	window.addEvent('domready', function() {
		var Tips2 = new Tips($$('.tips'), {
					className: 'BulleSimple',
					offsets: {'x': 15, 'y': 15},
					fixed: false,
					
					onHide: function(tip){ tip.fade(0); },
					onShow: function(tip){ tip.fade(0,1); }
			});
		
	});
	
		window.addEvent('domready', function() {
		var Tips6 = new Tips($$('.TipsAdmin'), {
					className: 'administrer',
					offsets: {'x': 15, 'y': 15},
					fixed: false,
					
					onHide: function(tip){ tip.fade(0); },
					onShow: function(tip){ tip.fade(0,1); }
			});
	});

window.addEvent('domready', function(){
  var slideshow = new BarackSlideshow('menu', 'pictures', 'loading', { transition: 'fade', auto: false, autostart: true,  });

	// the example above is only fitting for this demo, since we let the user pick the transition and turn auto on/off
	// for most scenarios, it's only enough with: 
	// new BarackSlideshow('menu', 'pictures', 'loading', {transition: '<transition here>', auto: true});
	// transitions can be 'slide-left', 'slide-right', 'slide-top', 'slide-bottom', 'fade'
});
