function initMenus() {
	$('ul.menu ul').hide();
	$.each($('ul.menu'), function(){
		$('#' + this.id + '.expandfirst ul:first').show();
	});
	
	$('li.m_act>ul').show();
	//$('li.m1a_sub ul').show();
	//$('li.m1a_subsub ul').show();
	$('ul.menu li a').mouseover(
		function() {
			var checkElement = $(this).next();
			var parent = this.parentNode.parentNode.id;

			if($('#' + parent).hasClass('noaccordion')) {
				$(this).next().slideToggle('slow');
				return false;
			}
			if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
				if($('#' + parent).hasClass('collapsible')) {
					$('#' + parent + ' ul:visible').slideUp('slow');
				}
				return false;
			}
			if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
				$('#' + parent + ' li.m1 ul:visible').slideUp('slow');
				checkElement.slideDown('slow');
				return false;
			}
		}
	);
}
//$(document).ready(function() {initMenus();});


$(document).ready(function() {
	
	
	$('#target').mouseover(
			function(){
				
				//alert('.');
			}
	);
	$('#target').mouseout(
			function(){
				
				//alert('..');
				
			}
	);
	
	 
}
);