window.addEvent('domready', function(){


if ($('noticiasportada')) {

		// PESTAŅAS PRINCIPALES

			var Noticias = new noobSlide({
				mode: 'vertical',

				box: $('noticiascontenido'),

				items: $$('#noticiascontenido div.noticiasbloque'),

				size: 250,

				handles: $$('#opcionesnoticias li'),

				onWalk: function(currentItem,currentHandle){

				//	$('info4').set('html',currentItem.getFirst().innerHTML);

					this.handles.removeClass('noticiasopactiva');

					currentHandle.addClass('noticiasopactiva');
					return false;

				}

			});

		}



if ($('agendaportada')) {

		// PESTAŅAS PRINCIPALES

			var Agenda = new noobSlide({
									   
				mode: 'horizontal',

				box: $('agendacontenido'),

				items: $$('#agendacontenido div.agendabloque'),

				size: 235,

				handles: $$('#opcionesagenda li'),

				onWalk: function(currentItem,currentHandle){

				//	$('info4').set('html',currentItem.getFirst().innerHTML);

					this.handles.removeClass('agendaopactiva');

					currentHandle.addClass('agendaopactiva');

				}

			});

		}



			
}); 

