
window.currentImgHome = -1;
window.nextImgHome = 0;

$("#imgshome li").hide();

function showNextImage() {
	
	if(window.currentImgHome > -1) {
		$($("#imgshome li")[window.currentImgHome]).fadeOut(500);		
	}
	window.currentImgHome++;
	if(!$("#imgshome li")[window.currentImgHome]) {
		window.currentImgHome = 0;
	}
	$($("#imgshome li")[window.currentImgHome]).fadeIn(500);					
	
	setTimeout("showNextImage()",6000);
}

$(document).ready(function() {
if($("#imgshome li").length > 1) {
	$($("#imgshome li")[0]).ready(showNextImage);	
}
});


function agendaSelect(obj) {
	$('.agendaselected').removeClass('agendaselected').removeClass('bgcolored');
	$(obj).parent().addClass('agendaselected').addClass('bgcolored');
	$(obj).parent().fadeOut(100).fadeIn(100);
	return false;
}

function agendaUpdate(res) {
	$('#dates').fadeOut(100).fadeIn(100);	
	$('#dates a:last')[0].focus();
	$('#dates a:last')[0].blur();	
}


