$(function() {
	$("#mvArea li a").each( function(){
		$(this).hover(
			function(){
				//メニュー
				$(this).animate({"marginLeft": "0px"}, 300);
				//MV
				var thisMenuID = $(this).parent().attr("id").substr(2)*1;
				var bgPosDef = $('#mvArea').css('backgroundPositionY');
				var moveY = "-"+(thisMenuID*280)+"px";
				if ( bgPosDef ) { // backgroundPositionYの値が取れた場合
					$("#mvArea").animate({backgroundPositionY:moveY}, 300);
				} else { // 取れなかった場合 (=FFの場合)
					$("#mvArea").css("backgroundPosition", "0 "+moveY);
				}
			},
			function () {
				$(this).animate({"marginLeft": "35px"}, 300);
			}
		);
	});
});


