
var idPlanet = setInterval(function() {
	$('#scrollPlanet .abajo').click();	
}, 3000);

var idForo = setInterval(function() {
	$('#scrollForo .abajo').click();	
}, 3000);

var idNoticias = setInterval(function() {
	$('#scrollNoticias .abajo').click();	
}, 5000);

var idArticulos = setInterval(function() {
	$('#scrollArticulos .abajo').click();	
}, 5000);

$(document).ready(function() {

	$("#scrollPlanetContenido").jCarouselLite({  
	    vertical: true,  
	    visible: 5,  
	    speed:1000,
	    circular: true,
	    btnNext: "#scrollPlanet .abajo",
	    btnPrev: "#scrollPlanet .arriba"
	}); 
	
	$("#scrollForoContenido").jCarouselLite({  
	    vertical: true,  
	    visible: 5,  
	    speed:1000,
	    circular: true,
	    btnNext: "#scrollForo .abajo",
	    btnPrev: "#scrollForo .arriba"
	}); 
	
	$("#scrollArticulosContenido").jCarouselLite({  
	    vertical: true,  
	    visible: 1,  
	    speed:1000,
	    circular: true,
	    btnNext: "#scrollArticulos .abajo",
	    btnPrev: "#scrollArticulos .arriba"
	}); 
	
	$("#scrollNoticiasContenido").jCarouselLite({  
	    vertical: true,  
	    visible: 1,  
	    speed:1000,
	    circular: true,
	    btnNext: "#scrollNoticias .abajo",
	    btnPrev: "#scrollNoticias .arriba"
	}); 
	
	$('#scrollPlanet').hover(
			function(){ clearInterval(idPlanet);},
			function(){
				idPlanet = setInterval(function() {
					$('#scrollPlanet .abajo').click();	
				}, 3000);});

	$('#scrollForo').hover(
			function(){ clearInterval(idForo);},
			function(){
				idForo = setInterval(function() {
					$('#scrollForo .abajo').click();	
				}, 3000);});
	
	$('#scrollArticulos').hover(
			function(){ clearInterval(idArticulos);},
			function(){
				idArticulos = setInterval(function() {
					$('#scrollArticulos .abajo').click();	
				}, 5000);});
	
	$('#scrollNoticias').hover(
			function(){ clearInterval(idNoticias);},
			function(){
				idNoticias = setInterval(function() {
					$('#scrollNoticias .abajo').click();	
				}, 5000);});
});