// simple eye-candy and useless effects
// powered with the mootools lib (http://mootools.net)

window.addEvent('domready', function(){
	var h_closed = '4px';
	var h_opened = '25px';
	$('sitelinks').set('tween', {duration: 5000});
	$('sitelinks').tween('height', h_closed).addEvents({
		'mouseenter': function(){
		// Always sets the duration of the tween to 1000 ms and a bouncing transition
		// And then tweens the height of the element
		this.set('tween', {
			duration: 1000,
			transition: Fx.Transitions.Bounce.easeOut // This could have been also 'bounce:out'
		}).tween('height', h_opened);
	},
                'mouseleave': function(){
                        // Resets the tween and changes the element back to its original size
                        this.set('tween', {}).tween('height', h_closed);
                }
	});
/*
	$('div.dokuwiki')..addEvents({
		'mouseenter': function(){
			$('sitelinks').set('tween', {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut
			}).tween('height', h_opened);
		},
                'mouseleave': function(){
                        $('sitelinks').set('tween', {}).tween('height', h_closed);
                }
	});
*/
});

