var a = 0;
var b = 0;
var c = 0;
var d = 0;

function SlideIn() { 
	var myFx = new Fx.Tween('menu', {duration: 250});
	myFx.start('bottom', -250, 15);
	return false;
};

function Nav2(){
	a = 1;
	document.addEvent('domready', function(){
		var myFx5 = new Fx.Tween('nav_info', {duration: 100});
		myFx5.set('bottom', 120);
		return false;
	});
}

function Vantaggi(){
	c = 1;
	document.addEvent('domready', function(){
		var myFx5 = new Fx.Tween('vantaggi', {duration: 100});
		myFx5.set('bottom', 101);
		document.getElementById('toggle_vantaggi').className = 'active';
		return false;
	});
}

function Press(){
	d = 1;
	document.addEvent('domready', function(){
		var myFx7 = new Fx.Tween('press', {duration: 100});
		myFx7.set('bottom', 101);
		document.getElementById('toggle_press').className = 'active';
		return false;
	});
}

function Realizzazioni(){
	b = 1;
	document.addEvent('domready', function(){
		var myFx8 = new Fx.Tween('realizzazioni', {duration: 100});
		myFx8.set('bottom', 101);
		document.getElementById('toggle_realizzazioni').className = 'active';
		return false;
	});
}

window.addEvent('domready', function() {
												 
	$('toggle_nav_info').addEvent('mouseover', function(){																					
		if(a==0){
			var myFx2 = new Fx.Tween('nav_info', {duration: 50});
			myFx2.start('bottom', -230, 120);
			a=1; // Aperto
		}
		else if(a==1){
			var myFx3 = new Fx.Tween('nav_info', {duration: 50});
			myFx3.start('bottom', 105, -230);
			a=0; // Chiuso
		}
		return false;
	});

	$('toggle_realizzazioni').addEvent('click', function(){																					
		if(b==0){
			var myFx4 = new Fx.Tween('realizzazioni', {duration: 100});
			myFx4.start('bottom', -250, 101);
			document.getElementById('toggle_realizzazioni').className = 'active';
			b=1; // Aperto
		}
		else if(b==1){
			var myFx4 = new Fx.Tween('realizzazioni', {duration: 200});
			myFx4.start('bottom', 101, -250);
			document.getElementById('toggle_realizzazioni').className = '';
			b=0; // Chiuso
		}
	return false;
	});
	
	$('toggle_vantaggi').addEvent('click', function(){																					
		if(c==0){
			var myFx4 = new Fx.Tween('vantaggi', {duration: 100});
			myFx4.start('bottom', -250, 101);
			document.getElementById('toggle_vantaggi').className = 'active';
			c=1; // Aperto
		}
		else if(c==1){
			var myFx4 = new Fx.Tween('vantaggi', {duration: 200});
			myFx4.start('bottom', 101, -250);
			document.getElementById('toggle_vantaggi').className = '';
			c=0; // Chiuso
		}
	return false;
	});
	
	$('toggle_press').addEvent('click', function(){																					
		if(d==0){
			var myFx6 = new Fx.Tween('press', {duration: 100});
			myFx6.start('bottom', -250, 101);
			document.getElementById('toggle_press').className = 'active';
			d=1; // Aperto
		}
		else if(d==1){
			var myFx6 = new Fx.Tween('press', {duration: 200});
			myFx6.start('bottom', 101, -250);
			document.getElementById('toggle_press').className = '';
			d=0; // Chiuso
		}
	return false;
	});
	
});