$(function(){
	$(".menu-disclosed a").click(function() {
		if ($(this).next().is('ul.hidden')) {
			$(this).next().slideToggle();
			return false;
		} else if ($(this).next().next().is('ul.hidden')) {
		  $(this).next().next().slideToggle();
		  return false;
		}
	});
	$(".currency-convertor a").click(function(){
		$(this).next().slideToggle();
		return false;
	});
});
