window.addEvent('domready', function(){

		if($('oldNews')) {

			boleanCategory = 0;
			
			var mySlide = new Fx.Slide('oldNews', {
						onComplete: function(){
							if (boleanCategory == 0){
								$('oldNewsTitle').className = "arrowModuleOpen";
								boleanCategory = 1;
							}else{
								$('oldNewsTitle').className = "arrowModuleClosed";
								boleanCategory = 0;
							}
						}
				}).hide();
			
			 $('oldNewsTitle').addEvent('click', function(eventPagesInstructions){		
				 eventPagesInstructions = new Event(eventPagesInstructions);
				 mySlide.toggle();
				 eventPagesInstructions.stop();
			 }); 

		};
		
});
