// JavaScript Document
window.addEvent('load', function(){
	var stagebecalos = new BySlideMenu('stagebecalos', {
					pinMode: 'mouseover',
					compressSize: 50,
					duration: 1000,
					transition: Fx.Transitions.Expo.easeOut
					});
	
	new MooTooltips({
			hovered:'.tipper',		// the element that when hovered shows the tip
			extra:{  
				0: {
					'id':'extra',
					'text':'this text is added manually using the extra.text parameter.',
					'position':-1,
					'sticky':false
				}
			},
			ToolTipClass:'ToolTips',	// tooltip display class
			toolTipPosition:1, // -1 top; 1: bottom - set this as a default position value if none is set on the element
			showDelay: 100,
			sticky:false,		// remove tooltip if closed
			fromTop: 0,		// distance from mouse or object
			fromLeft: -55,	// distance from left
			duration: 300,		// fade effect transition duration
			fadeDistance: 20    // the distance the tooltip starts the morph
		});
});
