var indice;
//Slideshow
function activa_slideshow() {
	$('#slideshow').slideshow({
		timeout: 4000,
		type: 'sequence'
	});
	$("#slideshow > img").css("display","block");
}

$(document).ready(function() {

	//Add Favoritos
	$('#add_favoritos').jFav();

	//Calendário
	if (document.getElementById('data_nascimento')){
		Calendar.setup({
			inputField     :    "data_nascimento",                // id of the input field
			//ifFormat       :    "%m/%d/%Y %I:%M %p",       // format of the input field
			ifFormat       :    "%Y-%m-%d",       // format of the input field
			showsTime      :    false,                      // will display a time selector
			button         :    "f_trigger_b",              // trigger for the calendar (button ID)
			singleClick    :    true,           // double-click mode
			step           :    1                // show all years in drop-down boxes (instead of every other year as default)
		});
	}
});