/**
 * Magento
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE_AFL.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magentocommerce.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magentocommerce.com for more information.
 *
 * @copyright  Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
 * @license    http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */
 
var VarienMenuShowTimer = null;
var VarienMenuShowElement = null;
var VarienMenuHideTimer = null;
var VarienMenuHideElement = null;
 
function toggleMenu(el, over)
{
    if(over) {
    	if(VarienMenuShowTimer != null) clearTimeout(VarienMenuShowTimer);
    	if(VarienMenuHideElement == el) VarienMenuHideElement = null;
    	VarienMenuShowElement = el;
    	VarienMenuShowTimer = setTimeout( ShowMenu , 333 );
    }
    else {
    	/*
	Element.removeClassName(el, 'over');
	if(VarienMenuShowElement == el) VarienMenuShowElement = null;
    	VarienMenuHideElement = el;
    	setTimeout( "VarienMenuHideElement = null;", 25);
    	//*/

	//*
	if(VarienMenuHideTimer != null) clearTimeout(VarienMenuHideTimer);
	if(VarienMenuShowElement == el) VarienMenuShowElement = null;
    	VarienMenuHideElement = el;
    	VarienMenuHideTimer = setTimeout( HideMenu , 50 ); //*/

    }
}

function ShowMenu() {
	if(VarienMenuShowElement != null) {
	      Element.addClassName(VarienMenuShowElement, 'over');
	}
	VarienMenuShowElement = null;
	VarienMenuHideElement = null;
	VarienMenuShowTimer = null;
}

function HideMenu() {
	if(VarienMenuHideElement != null) {
	      Element.removeClassName(VarienMenuHideElement, 'over');
          VarienMenuHideElement = null;
		VarienMenuHideTimer = null;
	}
}

