// JavaScript Document
$(function(){
		// 幫 #hmenu li a 加上 hover 事件
		$("#hmenu li a").hover(function(){
			// 滑鼠移進選項時..
			// 把背景圖片的位置往上移動
			var _this = $(this),
				_height = _this.height() * -1;
			_this.stop().animate({
				backgroundPosition: "(0px " + _height + "px)"
			}, 300);
		}, function(){
			// 滑鼠移出選項時..
			// 把背景圖片的位置移回原位
			$(this).stop().animate({
				backgroundPosition: "(0px 0px)"
			}, 300);
		});
	});

