//var lastMenuHoverId;
function initCustomMenus() {
	/*
	$('ul.menuparent ul').hide();
	$.each($('ul.menuparent'), function(){
		$('ul.expand').show();
		
	});
	$.each($('ul.expand'), function(){
		lastMenuHoverId = $(this).parent("li").attr('id');
		
	});
	customMenu_start();
	*/
}
function customMenu_start() {
	$('ul.menuparent li a').bind('mouseover', customMenu);
}
function customMenu() {
	//alert(lastMenuHoverId);
	var checkElement = $(this).next();
	//if((checkElement.is('ul')) && (!checkElement.is(':visible') || (checkElement.is('.expand') && checkElement.attr('id') != 'menuparent-45'))) {
	if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
		var nowId = this.parentNode.id;
		var parent = this.parentNode.parentNode.id;
		var timeout = 100;
		$('ul.menuparent li a').unbind('mouseover', customMenu);
		if (lastMenuHoverId == 'menu-101' && nowId != 'menu-99') {
			//展开4,收缩12
			$('#' + parent + ' ul:visible').not($('ul.expand')).slideUp('veryslow');
			checkElement.slideDown('normal');
			timeout = 1500;
		}
		else if (lastMenuHoverId == 'menu-101' && nowId == 'menu-99') {
			//展开8,收缩12
			$('#' + parent + ' ul:visible').not($('ul.expand')).slideUp('slow');
			checkElement.slideDown('slow');
		}
		else if (lastMenuHoverId == 'menu-99' && nowId != 'menu-101') {
			//展开4,收缩8
			$('#' + parent + ' ul:visible').not($('ul.expand')).slideUp('slow');
			checkElement.slideDown('normal');
			timeout = 800;
		}
		else if (lastMenuHoverId == 'menu-99' && nowId == 'menu-101') {
			//展开12,收缩8
			$('#' + parent + ' ul:visible').not($('ul.expand')).slideUp('slow');
			checkElement.slideDown('slow');
		}
		else if ((lastMenuHoverId != 'menu-45' && lastMenuHoverId != 'menu-99' && lastMenuHoverId != 'menu-101') && nowId == 'menu-99') {
			$('#' + parent + ' ul:visible').not($('ul.expand')).slideUp('normal');
			$('#nav ul:visible').not($('ul.expand')).slideUp('normal');
			checkElement.slideDown('slow');
			//timeout = 1500;
		}
		else if ((lastMenuHoverId != 'menu-45' && lastMenuHoverId != 'menu-99' && lastMenuHoverId != 'menu-101') && nowId == 'menu-101') {
			$('#' + parent + ' ul:visible').not($('ul.expand')).slideUp('normal');
			$('#nav ul:visible').not($('ul.expand')).slideUp('normal');
			checkElement.slideDown('veryslow');
			//timeout = 1500;
		}
		else {
			//展开4,收缩4
			$('#' + parent + ' ul:visible').not($('ul.expand')).slideUp('normal');
			checkElement.slideDown('normal');
		}
		/*
		if (lastMenuHoverId == 'menu-101' && nowId != 'menu-99') {
			timeout = 800;
		}
		*/
		lastMenuHoverId = nowId;
		setTimeout('customMenu_start()', timeout);
	}
	
}

function setToolbar(){
	$(':input').bind('propertychange', function() {
		//alert($(this).css('backgroundColor'));
		if ($(this).css('backgroundColor') != '') {
			$(this).css('backgroundColor', '');
		}
	});
	$(':input').css('backgroundColor', '');
}
$(document).ready(function() {
	//initCustomMenus();
	setToolbar();
});

