/**
 * @author Daniele
 */

function ajaxNav(){
	$("#galleryhome .galleria a").facebox();
	$("#galleryhome .controllo a").click(function(event){
		event.preventDefault();
		$("#galleryhome").html('<img src="/i/ajax-loader.gif" style="margin-top: 29px; margin-left: 143px; display: block;"');
		//$.get(this.href+"&amp;format=xml",
		$("#galleryhome").load(
			$(this).attr("href"), 
			{source: "js"},
			ajaxNav
		);
	});
}

$(document).ready(function(){
	$("a[rel=ext]").attr("target", "_blank");
	$("a[rel=popin]").facebox();
	$("#calendar").haccordion({
		header: ">li>a",
		active: ".active",
		selectedClass: "active"
	});
	$("#ticketone ul").accordion({header: "h4", alwaysOpen: false, autoHeight: false});
	$("#newsbox ul").newsticker({delay:40000});
	ajaxNav();
});

