$(document).ready(function(){		
	
	if ($('#tweets').length){
		$.get(urlGlobal + '/s/',{procesa:'usuario-sintag',name:'cinesmovieland'},function(tweets){
			tweets = tweets.split('|:|');				
			$('#tweets').find('p').html(tweets[0]);
			mostrarTweets(tweets,1);
		});		
	}	
});

/*-------------------------------------------------------
	Funcion para mostrar los tweets.
-------------------------------------------------------*/
function mostrarTweets(tweets,i){
	setTimeout(function(){
		if(i <= 9){
			$('#tweets').find('p').html(tweets[i]);
			i++;
			mostrarTweets(tweets,i)
		}
		else{
			mostrarTweets(tweets,0)
		}
	},50000);
}


