//汎用ウィンドウオープン
function MM_openBrWindow(URL,winName,status) {
  window.open(URL,winName,status).focus();
  return false;
}

$(function(){
	$("#moveScroll a").click(function(){
		$('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');
		return false;
	})
});
