// JavaScript Document
$(function () {
//主選單  ------------------------------------------------------------------------------------------------
		// 幫 #menu li 加上 hover 事件
		$('#menu ul>li').hover(function(){
			// 先找到 li 中的子選單 
			var _this = $(this),
				_subnav = _this.children('ul');
			
			// 變更目前母選項的背景顏色
			// 同時淡入子選單(如果有的話)
			_subnav.stop(true, true).fadeIn(400);
		} , function(){
			// 變更目前母選項的背景顏色
			// 同時淡出子選單(如果有的話)
			// 也可以把整句拆成上面的寫法
			$(this).css('backgroundColor', '').children('ul').stop(true, true).fadeOut(400);
		});
		
		// 取消超連結的虛線框
		$('a').focus(function(){
			this.blur();
		});
//主選單  EN D------------------------------------------------------------------------------------------------

});


