// MENU NOT USING: 2/5/2011
//menu_horiz.init({
	//mainmenuid: "menu", //menu DIV id
	//orientation: 'h', //Horizontal or vertical menu: Set to "h" or "v"
	//classname: 'menu_horiz', //class added to menu's outer DIV
	////customtheme: ["#1c5a80", "#18374a"],
	//contentsource: "markup" //"markup" or ["container_id", "path_to_menu_file"]
//})

var obj = null;

function checkHover() {
	if (obj) obj.find('ul').fadeOut('fast');
}

jQuery(function() {
	
	/** begin submenu **/
	jQuery('#menu_horizontal_1 ul > li').hover(
		function() {
			if (obj) {
				obj.find('ul')
					.css('display', 'none');
				obj = null;
			}
			jQuery(this).find('ul')
				.fadeIn();
		},
		function() {
			obj = jQuery(this);
			setTimeout("checkHover()", 1000);
		}
	);
	/** end submenu **/
	
});

