/********************************Vista View***********************************
******************Sidebar display of the widget on Vista.*********************
******************************************************************************/

var turfooVistaview = {
	widgetLoaded : function () {
		$('tabedit').remove();
		CWE.getRss({
			'url'	: 'http://www.turfoo.fr/fluxrss/actualites/',
			'name' 	: 'newsVista'
		});
	},
	
	//Newsfeed initialization
	treatNewsFeed:function(rss) {		
		rss.feeds.each(function(item, i) {
			newsArray["title"].push(item.title);
			newsArray["link"].push(item.link);
		});
		
		$('vistanews').setHTML(newsArray["title"][position]);
		$('vistanews').href = newsArray["link"][position];
		position++;
		turfooVistaview.rotateNews.periodical(6000);
	},
	
	//Changer news every 6 seconds
	rotateNews:function() {
		turfooVistaview.changeNews();
	},
	
	//Change news with effet
	changeNews:function() {
		if(position>newsArray["title"].length-1 || position<0) {
			position = 0;
		}
 		$('vistanews').setHTML(newsArray["title"][position]);
 		$('vistanews').href = newsArray["link"][position];				
		position++;
	}
}