// código jQuery
var pauseGlobal = 0;
$(document).ready (
	function (){
		$('#interactiva')
		.cycle({
			fx: 'fade',
			speed: 1000,
			delay: -3000,
			timeout: 2000,
			pause: 1,
			pager: '#paginador'
		});
		//asignamos eventos a los enlaces
		$('#paginador').children('a').hover(
		function(event){
			if (pauseGlobal == 0) {
				$('#interactiva').cycle('pause');
				$("#notSticker").show();
			}
		},
		function(event){
			if (pauseGlobal == 0) {
				$('#interactiva').cycle('resume');
				$("#notSticker").hide();
			}
		});
		
	
		reproduce();
	}
);		
// si quisieramos mostrar en texto la diapo actual

/*
function dameInfo(curr,next,opts,fwd){
var $slides = $(this).parent().children();
var indice = $slides.index(this)+1; 
$('.salida').html('diapositiva numero '+ indice);
$('#paginador').children('a').css({'background-color' : '#ffffff' , 'border-color' : '#ffffff',  'color' : '#407ED8'});
$('#paginador').children('.activeSlide').css({'background-color' : '#343434' , 'border-color' : '#343434', 'color' : '#ffffff' });
}
*/

function reproduce () {
	$('#interactiva').cycle('resume');
}

function deten () {
	$('#interactiva').cycle('pause');
}