var Dunae = {
	
	initNav : function () {
		$('.expando .cap').css({cursor: 'pointer'}).bind('click', function () {

			var more = $(this).siblings('.more');
			if ($(this).hasClass('expanded')) {
				more.slideUp(200);
				$(this).removeClass('expanded');
			} else {
			more.slideDown(150);
				$(this).addClass('expanded');
			}
		});
	}
	
};

Dunae.initNav();
