$(document).ready(function() {

	var href = window.location.href;
	var a = href.split('/');
	var page = a[a.length - 1];
	var a = page.split('&');
	page = a[0];
	
	if (page == '' || page == 'index.php')
	{
		page = 'index.php?id=19'
	}
	
	$('#menu .submenu').hide();
	$('.submenu:has(a[href=' + page + '])').show();
	$('p:has(a[href=' + page + '])').addClass("current");
	$('.toggle').click(function () {
		$(this).next('.submenu').toggle('normal');
	});

    $("#agenda").jCarouselLite({
        btnPrev: "#previous-event img",
        btnNext: "#next-event img",
		vertical: "true",
		auto: 5000,
		speed: 500
    });

});
