varAnimationStyle 		= 'show';
varMenuOpeningDelay 	= 1200;

 $(document).ready(function() {
	$('.sidebar .navigation-footer a').click(function() {
													var checkElement = $(this).next();
													
													$('.sidebar .navigation-footer ul:visible').slideUp('normal');
													
													if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
														checkElement.slideDown('normal');
														return false;
													}
													
													if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
														return false;
													}
													
												});

});
