var test = false ;
window.addEvent('domready', function() { 
	var anotherEl = $('cont_menu');
	var morph = new Fx.Morph('cont_menu');
	$('menu').addEvent('click', function(e) {
		e.stop();
		if( !test )
		{
			test = !test;
			morph.start({
				width: '680px',
				height: '370px'
			});
		}
		else
		{
			test = !test;
			morph.start({
				width: '0px',
				height: '370px'
			});
		}
	});
	
	$('menu_a').addEvent('click', function(e) {
		e.stop();
		if( !test )
		{
			test = !test;
			morph.start({
				width: '680px',
				height: '370px'
			});
		}
		else
		{
			test = !test;
			morph.start({
				width: '0px',
				height: '370px'
			});
		}
	});
});

function activHome()
{
	var anotherEl = $('cont_menu');
	var morph = new Fx.Morph('cont_menu');
	if( !test )
		{
			test = !test;
			morph.start({
				width: '680px',
				height: '370px'
			});
		}
		else
		{
			test = !test;
			morph.start({
				width: '0px',
				height: '370px'
			});
		}
}
