window.addEvent('domready',function(){
	
	var AssassinsCreed2 = new Fx.Slide('content');
	var AssassinsCreed = new Fx.Slide('hanzo');
	
	$('toggle').addEvent('click', function(e){
		e.stop();
		AssassinsCreed.toggle();
	});
	
	AssassinsCreed2.hide();
	
	var Fulgore = function(){AssassinsCreed2.slideIn();}
	Fulgore.delay(1300);

	
		$('toggle2').addEvent('click', function(e){
		e.stop();
		AssassinsCreed2.toggle();
	});
	
			new MooTooltips({
			hovered:'.tipper',		// the element that when hovered shows the tip
			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
			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
		});	
	

	
	})
	
	
