// JavaScript Document
$(document).ready(function () {
	$('.menu li').click(function(){
		if($(this).children('ul.sub-menu').length!=0 && $(this).children('ul.sub-menu').is(':visible')==false){
			$(this).parent('ul').children('li').children('ul.sub-menu').slideUp('fast');
			$(this).children('ul.sub-menu').slideDown('slow');
			$('#sidebar .current-menu-ancestor').removeClass('current-menu-ancestor');
			$('#sidebar .current-page-ancestor').removeClass('current-page-ancestor');
			$('#sidebar .current-menu-item').removeClass('current-menu-item');

			$(this).addClass('current-menu-ancestor');
			return false;
		}
	}); 
});
