function LoadTweets(tweets){

	$('#twitter_update_list').html(tweets);
	
	var tw = $('#twitter_update_list').html();
	tw = tw.replace(/href/g, "target = '_blank' href");
	
	var words = tw.split(" ");
	tw = "";
	for(i = 0; i < words.length; i++){
		if(words[i].charAt(0) == '#'){
			words[i] = "<span class = 'text-talaentia-login'>" + words[i] + "</span>";
		}
		tw += " " + words[i];
	}
	
	$('#twitter_update_list').html(tw);
	
	$('#twitter_update_list').innerfade({ 
		animationtype: 'fade', 
		speed: 'slow',
		timeout: 5000, 
		type: 'sequence',
		containerheight: '50px' 
	});
}

