// JavaScript Document

$(function(){
	$("a[href^=#]").click(function(){
		var elmID = $(this).attr("href");
		var posi = $(elmID).offset().top;
		$("html,body").animate({
			scrollTop: posi
		}, 1000);
		return false;
	});
	
	//会社概要タブ
	$("#shop_tab a").click(function(e) {
		$("#shop_tab a").removeClass();
		$(this).addClass("select");
		$(".tab_box").hide();
		var idName = $(this).attr("href");
		$("#"+idName+"_box").show();
		return false;
    });
	
	$("a[href^=http]").attr("target","_blank");
});
