// JavaScript Document
	$(function() {
			$('li.navi01').hover(function(){
			$("#index_topimage").find('img').animate({left:'0px'},{queue:false,duration:0});},
			function(){$("#index_topimage").find('img').animate({left:'0px'},{queue:false,duration:0});});
			
			$('li.navi02').hover(function(){
			$("#index_topimage").find('img').animate({left:'-900px'},{queue:false,duration:0});},
			function(){$("#index_topimage").find('img').animate({left:'0px'},{queue:false,duration:0});});

			$('li.navi03').hover(function(){
			$("#index_topimage").find('img').animate({left:'-1800px'},{queue:false,duration:0});},
			function(){$("#index_topimage").find('img').animate({left:'0px'},{queue:false,duration:0});});
			
			$('li.navi04').hover(function(){
			$("#index_topimage").find('img').animate({left:'-2700px'},{queue:false,duration:0});},
			function(){$("#index_topimage").find('img').animate({left:'0px'},{queue:false,duration:0});});
			
			$('li.navi05').hover(function(){
			$("#index_topimage").find('img').animate({left:'-3600px'},{queue:false,duration:0});},
			function(){$("#index_topimage").find('img').animate({left:'0px'},{queue:false,duration:0});
			});	
	
	});