pagetop = function() {
	var index = [
		''
	];
	
	T = {
		init : function() {
			$(window).resize(onResize);
			onResize();
			
			$("#menu01").hover(function(){
				$(this).attr("src","images/menu-btn01-mo.jpg");
			},function(){
				$(this).attr("src","images/menu-btn01.jpg");
			});
			$("#menu02").hover(function(){
				$(this).attr("src","images/menu-btn02-mo.jpg");
			},function(){
				$(this).attr("src","images/menu-btn02.jpg");
			});
			$("#menu03").hover(function(){
				$(this).attr("src","images/menu-btn03-mo.jpg");
			},function(){
				$(this).attr("src","images/menu-btn03.jpg");
			});
			$("#menu04").hover(function(){
				$(this).attr("src","images/menu-btn04-mo.jpg");
			},function(){
				$(this).attr("src","images/menu-btn04.jpg");
			});
			$("#menu05").hover(function(){
				$(this).attr("src","images/menu-btn05-mo.jpg");
			},function(){
				$(this).attr("src","images/menu-btn05.jpg");
			});
			$("#top01").hover(function(){
				$(this).attr("src","images/topbtn-company-mo.jpg");			},function(){
				$(this).attr("src","images/topbtn-company.jpg");			});
			$("#top02").hover(function(){
				$(this).attr("src","images/topbtn-contact-mo.jpg");			},function(){
				$(this).attr("src","images/topbtn-contact.jpg");			});
			$("#btn-greeting").hover(function(){
				$(this).attr("src","images/btn-greeting-mo.jpg");
			},function(){
				$(this).attr("src","images/btn-greeting.jpg");
			});
			$("#btn-company").hover(function(){
				$(this).attr("src","images/btn-company-mo.jpg");
			},function(){
				$(this).attr("src","images/btn-company.jpg");
			});
			$("#btn-history").hover(function(){
				$(this).attr("src","images/btn-history-mo.jpg");
			},function(){
				$(this).attr("src","images/btn-history.jpg");
			});
			$(".house").hover(function(){
				$(this).attr("src","images/house01-mo.jpg");
			},function(){
				$(this).attr("src","images/house01.jpg");
			});
			$(".office").hover(function(){
				$(this).attr("src","images/store-office-mo.jpg");
			},function(){
				$(this).attr("src","images/store-office.jpg");
			});
			$(".record-one").hover(function(){
				$(this).css("text-decoration","underline");
			},function(){
				$(this).css("text-decoration","none");
			});
			
			$("#thumb00").hover(function(){
				$("#disp").attr("src","images/record-00.jpg");
			});
			$("#thumb01").hover(function(){
				$("#disp").attr("src","images/record-01.jpg");
			});
			$("#thumb02").hover(function(){
				$("#disp").attr("src","images/record-02.jpg");
			});
			$("#thumb03").hover(function(){
				$("#disp").attr("src","images/record-03.jpg");
			});
			$("#thumb04").hover(function(){
				$("#disp").attr("src","images/record-04.jpg");
			});
			$("#thumb05").hover(function(){
				$("#disp").attr("src","images/record-05.jpg");
			});
			$("#thumb06").hover(function(){
				$("#disp").attr("src","images/record-06.jpg");
			});
			$("#thumb07").hover(function(){
				$("#disp").attr("src","images/record-07.jpg");
			});
			$("#thumb08").hover(function(){
				$("#disp").attr("src","images/record-08.jpg");
			});
		}
	};
	
	function onResize() {
	}
	
	return T;
}();

$(document).ready(pagetop.init);

