Event.observe(window, 'load', function() {

	Event.observe('menu_right01', 'click', function(event) {				
	
		Event.stop(event);
		
		if ($('submenu_right01').style.display == 'none')
		{
			new Effect.SlideDown($('submenu_right01'));				
			$('menu_right01').addClassName('desplegado');
		}
		else
		{
			new Effect.SlideUp($('submenu_right01'));
			$('menu_right01').removeClassName('desplegado');
		}
		
		var url = 'menuright.php';
		// notice the use of a proxy to circumvent the Same Origin Policy.

		new Ajax.Request(url, {
			method: 'get',
			onSuccess: function(transport) {						
			}
		});
		
	});
	
	if (!menuDesplegado)
	{
		$('submenu_right01').style.display = 'none';	
	}
	else
	{
		$('menu_right01').addClassName('desplegado');
	}
	

});





