$(document).ready(function(){
	init_banner();
	trim_excerpt()
});

function upcoming_events(){
	var the_notes = $('.dbem_events_list .the_notes').html().substring(0, 150) + '...';
	$('.dbem_events_list .the_notes').html(the_notes);
}

function trim_excerpt(){
	$('.excerpt').each(function(){
		var excerpt = $(this).html();
		if( excerpt.length > 100 )
			$(this).html(excerpt.substring(0, 100) + '...');
	});
}

function init_banner(){
	$('#banner .wrapper').cycle({
		fx: 'scrollHorz',
		timeout: 8000
	});
}


