// JavaScript Document
		$(function(){
			// Set starting slide to 1
			var startSlide = 1;
			// Initialize Slides
			$('#slides').slides({
				preload: true,
				preloadImage: 'images/loading.gif',
				generatePagination: true,
				play: 10000,
				pause: 2500,
				hoverPause: true,
				effect: 'fade',
				crossfade: true,
				// Get the starting slide
				start: startSlide
			});
			
			$('#slidesNews').slides({
				preload: true,
				preloadImage: 'images/loading.gif',
				generatePagination: true,
				play: 10000,
				pause: 2500,
				hoverPause: true,
				effect: 'slide',
				crossfade: true,
				// Get the starting slide
				start: startSlide
			});

		});

Shadowbox.init({
	language		: "it",
	counterType		: 'skip',
	displayCounter  : false,
    players			: ['img', 'html', 'iframe', 'qt', 'wmp', 'swf', 'flv']
});

function ajaxpage(url, containerid){
	document.getElementById(containerid).innerHTML='<img src="images/loadingC.gif" />';
		new Ajax.Updater(containerid, url, { method: 'get'});   
}
function ajaxpage2(url, containerid){
	document.getElementById(containerid).innerHTML='<img src="images/loadingC.gif" />';
		$('#'+containerid).load(url);   
}


