/*
function initMenu(){
$('#menu ul').hide();

$('#menu li a').click(
function() {
  var checkElement = $(this).next();
  if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
	return false;
	}
  if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
	$('#menu ul:visible').fadeOut('normal');
	checkElement.fadeIn('normal');
	return false;
	}
  }
);
}
$(document).ready(function() {initMenu();});
*/
