// JavaScript Document

function setCommon(){
	
	$(".searchBtn").mouseover(function(){
		$(this).attr("src", "/common/image/searchBtnOn.gif");
	});
	
	$(".searchBtn").mouseout(function(){
		$(this).attr("src", "/common/image/searchBtn.gif");
	});
	
	
	$(".detailBtn > a > img").mouseover(function(){
		$(this).attr("src", "/common/image/detailOn.gif");
	});
	
	$(".detailBtn > a > img").mouseout(function(){
		$(this).attr("src", "/common/image/detail.gif");
	});
	
	var h = $("#container").innerHeight();
	$("#toTopBtn").css("top", h-60);
	
	$("#toTopBtn > img").mouseover(function(){
		$(this).attr("src", "../common/image/toTopOn.gif");
	});
	
	$("#toTopBtn > img").mouseout(function(){
		$(this).attr("src", "../common/image/toTop.gif");
	});
	
	$("#toTopBtn > img").click(function(){
		var anim = new tokyoace4.AnimationScroll(0,4);
		anim.start();
	});
	
	
}
