$('html').addClass('js');
	
	$(document).ready(function() {

$('.toggleLink').click(function() {
		//$(this).parent().toggleClass('lvl_current');
		$(this).toggleClass('current');
		$(this).parent().next('.toggle').slideToggle();
	
	// return false so any link destination is not followed
	return false;
	
	});

});
