// código jQuery
		var pauseGlobal = 0;
		$(document).ready (
		function (){
				$('#interactiva')
				.before('<div id="paginador"><div id="notSticker">selecciona una noticia</div><div id="stopSticker">detener presentaci&oacute;n</div><div class="stopInteractiva">stop</div>')		
				.cycle({
					fx: 'fade',
					speed: 1000,
					delay: -3000,
					timeout: 10000,
					pause: 1,
					pager: '#paginador'					
				});
				//asignamos eventos a los enlaces

				$('#interactiva').children('a').children('img').show();
				$('#paginador').children('a').hover(
				function(event){
					if (pauseGlobal == 0) {
						$('#interactiva').cycle('pause');
						$("#notSticker").show();
					}
				},
				function(event){
					if (pauseGlobal == 0) {
						$('#interactiva').cycle('resume');
						$("#notSticker").hide();
					}
				});
				
				//ocultamos los stickers
				$("#notSticker").hide();
				$("#stopSticker").hide();	
				//comportamientos del boton Stop			
				$(".stopInteractiva").hover (	
				function(event){				
					$("#stopSticker").show();			
				},
				function(event){	
					$("#stopSticker").hide();			
				}
				);
				// funciones para el botón STOP 
				$(".stopInteractiva").bind("click" , function(e){
					if (pauseGlobal == 0) {
						$('#interactiva').cycle('pause');
						$(".stopInteractiva").html("play");
						pauseGlobal = 1;
						return;
					}
					if (pauseGlobal == 1) {
						$('#interactiva').cycle('resume');
						$(".stopInteractiva").html("stop");
						pauseGlobal = 0;
						return;
					}
				});
				
			}
			
			
		);