$(document).ready(function(){

	$('#slideshow').cycle({ 
			before:			onbefore,
			fx:					'fade', 
			next:    		'#rtv_ctrls_next',
			pagerEvent:	'mouseover', // name of event which drives the pager navigation
			pager:			'#rotativeNavigation',
      prev:    		'#rtv_ctrls_prev',
			speed:			500,  // speed of the transition (any valid fx speed value)
			timeout:		5000
      

	 });
	 
	function onbefore() { 
			$('#rotativo>h2').html($(this).children().attr('rel'));
			$('#rotativo>h1').html($(this).children().attr('alt')); 

	}
	
	$("#cta").click(function(){
		parent.location = $("base").attr("href")+"inicio/registro.html";
	});
	
	
	$("#rtv_ctrls_pause").click(function(){
		var thisPath = $(this).attr("src");
		var thisPathEnd = thisPath.substr((thisPath.length-5),1);
		
		if(thisPathEnd == "e"){
			$(this).attr("src","images/rtv_btn_play.png");
			$(this).attr("title","Reanudar");
			$('#slideshow').cycle('pause'); 
		}else if(thisPathEnd == "y"){
			$(this).attr("src","images/rtv_btn_pause.png");
			$(this).attr("title","Pausar");
			$('#slideshow').cycle('resume'); 
		}
	});
	
});