function cargarTwitterLista(usuario,lista)
{
	new TWTR.Widget({
	  version: 2,
	  type: 'list',
	  rpp: 30,
	  interval: 6000,
	  title: '',
	  subject: '',
	  width: 'auto',
	  height: '200',
	  theme: {
	    shell: {
	      background: 'trasparent',
	      color: '#000000'
	    },
	    tweets: {
	      background: 'trasparent',
	      color: '#747474',
	      links: '#363636'
	    }
	  },
	  features: {
	    scrollbar: true,
	    loop: false,
	    live: true,
	    hashtags: true,
	    timestamp: true,
	    avatars: true,
	    behavior: 'all'
	  }
	}).render().setList(usuario,lista).start();
}
