$(document).ready(function(){
	$('.menu ul ul').css({display: 'none'});
	$('.menu ul > li > a').click(function(){
		$(this).parent().children('ul:not(:animated)').slideToggle();																		
	});
	
});

hs.graphicsDir = 'highslide/graphics/';
hs.align = 'center';
hs.transitions = ['expand', 'crossfade'];
hs.outlineType = 'rounded-white';
hs.fadeInOut = true;
hs.dimmingOpacity = 0.75;
// define the restraining box
hs.useBox = true;
hs.width = 800;
hs.height = 600;
// Add the controlbar
hs.addSlideshow({
    //slideshowGroup: 'group1',
    interval: 5000,
    repeat: false,
    useControls: true,
    fixedControls: 'fit',
    overlayOptions: {
        opacity: 1,
        position: 'bottom center',
        hideOnMouseOut: true
    }
});

function changeMonth(set)
{
	mes += set;
	if(mes == 0)
	{
		mes = 12;
		ano -= 1;
	}
	else if(mes == 13)
	{
		mes = 1;
		ano += 1;
	}
	dia_falso = (mes == mes_atual)?dia:32;
	$('#calendario').load('includes/calendario.inc.php?ajax&dia='+dia_falso+'&mes='+mes+'&ano='+ano);
}