	$(document).ready(function() {
		
		//Slider contest homepage
	    $('#slideshow li').hide();
		var first = $('#slideshow li:first-child');
		first.show();
		var active = first;
		var timec = 8000;	//ogni 8 secondi

	    setInterval( function() {
	        active.slideUp('slow');
	        active.next().slideDown('slow');

	        if (active.next().length) {
	            active = active.next();
	        } else {
	            active.slideUp('slow');
	            active = first;
	            active.slideDown('slow');
	        }
	    }, timec);
		
		$('#agensir').rssfeed('http://www.agensir.it/pls/sir/rss_documenti.elenco_documenti').ajaxStop(function() {
			$('#agensir div.rssBody').vTicker({ showItems: 2 });
		});
	
	 });

