$(document).ready( function() {
	
	$('.scrollMesAgenda').scrollable( {
		'onSeek': function() {
			$('.titulo_agenda_meio').html( $($('.agenda_base_texto')[$('.scrollMesAgenda').scrollable().getIndex()]).prop('id') );
		}
	} );
	
	$('.titulo_agenda_meio').html( $('.ativo').prop('id') );
	
	$('.evento').click( function() {
		$($('.agenda_conteudo_clicado').children()[3]).html( $(this).html() );
		
		$($($('.agenda_conteudo_clicado').children()[3]).children()[1]).html('<strong>' + $($($('.agenda_conteudo_clicado').children()[3]).children()[1]).html() + '</strong>');
		
		$('.agenda_conteudo_clicado').hide().fadeIn(500)
		
		$('.agenda_texto_conteudo').html( $(this).attr('descricao') );
		$('#tipo_evento').html( $(this).attr('tipo') );
	} );
	
});
