window.addEvent('domready', function() {
	//NOTICIA - 1
	var ver1 = new Fx.Slide('ver1'); //--vertical --- hacia abajo
	var ocult1 = new Fx.Slide('ocultar1'); //--vertical --- hacia abajo
	var noticias1 = new Fx.Slide('noticia1', {mode: 'vertical'}); //--vertical --- hacia abajo
	noticias1.hide(); // Ocultamos inicialmente la capa DIV
	ocult1.hide(); // Ocultamos inicialmente la capa DIV
	$('ver1').addEvent('click', function(e){
		e.stop();
		noticias1.slideIn();
		ver1.hide();
		ocult1.show();
	});
	$('ocultar1').addEvent('click', function(e){
		e.stop();
		noticias1.slideOut();
		ver1.show();
		ocult1.hide();
	});
	//NOTICIA - 2
	var ver2 = new Fx.Slide('ver2');
	var ocult2 = new Fx.Slide('ocultar2');
	var noticias2 = new Fx.Slide('noticia2', {mode: 'vertical'});
	noticias2.hide();
	ocult2.hide();
	$('ver2').addEvent('click', function(e){
		e.stop();
		noticias2.slideIn();
		ver2.hide();
		ocult2.show();
	});
	$('ocultar2').addEvent('click', function(e){
		e.stop();
		noticias2.slideOut();
		ver2.show();
		ocult2.hide();
	});
	//NOTICIA - 3
	var ver3 = new Fx.Slide('ver3');
	var ocult3 = new Fx.Slide('ocultar3');
	var noticias3 = new Fx.Slide('noticia3', {mode: 'vertical'});
	noticias3.hide();
	ocult3.hide();
	$('ver3').addEvent('click', function(e){
		e.stop();
		noticias3.slideIn();
		ver3.hide();
		ocult3.show();
	});
	$('ocultar3').addEvent('click', function(e){
		e.stop();
		noticias3.slideOut();
		ver3.show();
		ocult3.hide();
	});
});