﻿$(function(){
	/***********************************************
	//pagetop 									   //
	************************************************/
	$(".pagetop > a").click(function(){
		$(this).blur();
		$('html,body').animate({ scrollTop: 0 }, 'slow');
		return false;
	});
	
	
	/***********************************************
	//page_homepage move 						   //
	************************************************/
	$(".in_linklist > li > a").click(function(){
		var get_index = $(".in_linklist > li > a").index(this);
		var get_y = $("h3").eq(get_index).position().top;
		$('html,body').animate({ scrollTop: get_y }, 'slow');
		$(this).blur();
		return false;
	});
	//var_systempage
	$(".in_linklist2 > li > a").click(function(){
		var get_index = $(".in_linklist2 > li > a").index(this);
		var get_y = $("dt").eq(get_index).position().top;
		$('html,body').animate({ scrollTop: get_y }, 'slow');
		$(this).blur();
		return false;
	});
});