window.addEvent('domready', function() {
	var status = {
		'true': 'open',
		'false': 'close'
	};
	
	
	var myaboutUs = new Fx.Slide('aboutUs');
	myaboutUs.hide();
	$('xaboutUs').addEvent('click', function(e){
		
		e.stop();
		myaboutUs.toggle();
		
		mycorporateService();
		mycustomerService();
		mycustomerComments();
		mymasCiudades.hide();

	});
		
	var mymasCiudades = new Fx.Slide('masCiudades');
	mymasCiudades.hide();
	$('xmasCiudades').addEvent('click', function(e){
		
		e.stop();
		mymasCiudades.toggle();
		
		myaboutUs.hide();
		mycorporateService();
		mycustomerService();
		mycustomerComments();
	});

	var mycorporateService = new Fx.Slide('corporateService');
	mycorporateService.hide();
	$('xcorporateService').addEvent('click', function(e){
		
		e.stop();
		mycorporateService.toggle();
		
		myaboutUs.hide();
		mymasCiudades();
		mycustomerService();
		mycustomerComments();
	});
	
	var mycustomerService = new Fx.Slide('customerService');
	mycustomerService.hide();
	$('xcustomerService').addEvent('click', function(e){
		
		e.stop();
		mycustomerService.toggle();
		
		myaboutUs.hide();
		mymasCiudades();
		mycorporateService();
		mycustomerComments();
	});
	
		var mycustomerComments = new Fx.Slide('customerComments');
	mycustomerComments.hide();
	$('xcustomerComments').addEvent('click', function(e){
		
		e.stop();
		mycustomerComments.toggle();
		
		myaboutUs.hide();
		mymasCiudades();
		mycorporateService();
		mycustomerService();
	});
	
});
