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