$(document).ready(function(){
	var busqueda = 'from:fuerza_grafica';
	$.getJSON("http://search.twitter.com/search.json?q=" + busqueda + "&callback=?",function(data){
		$.each(data.results,function(){
			var texto;
			if(this.text.length > 86){
				texto = this.text.substring(0,86)+'...';
			}else{
				texto = this.text;
			}
			$('<p></p>')
				.hide()
				.append(texto)
				.appendTo('#texto-twitter')
				.fadeIn();
		});
		$('#texto-twitter').cycle({
			fx: 'fade',
			startingSlide: 0,
			timeout: 8000,
		});
	});
});
