// websalon.org 標準スクリプト HANAKO ver.20120101
// Copyright 2012 (c) Takagi.Yukimasa



// ---------- フォントサイズ設定

document.writeln("<style type='text/css'><!--")

if(navigator.appVersion.indexOf("Mac") > 1){
	// Mac
	document.writeln(".e9 {font-Size:10px}")
	document.writeln(".e10{font-Size:9px; line-height:12px}")
	document.writeln(".e11{font-size:10px; line-height:14px}")
	document.writeln(".e13{font-Size:12px; line-height:16px}")
	document.writeln(".e00{font-Size:17px; line-height:22px}")
	document.writeln(".e_normal{font-size:12px; line-height:18px}")
	document.writeln(".e_big{font-size:14px; line-height:20px}")
	document.writeln(".e_small{font-size:10px; line-height:16px}")
	document.writeln(".e_notice{font-size:14px; line-height:20px}")
	document.writeln(".j9 {font-Size:10px}")
	document.writeln(".j10{font-size:9px; line-height:12px}")
	document.writeln(".j11{font-Size:10px; line-height:14px}")
	document.writeln(".j13{font-size:12px; line-height:16px}")
	document.writeln(".j00{font-size:18px; line-height:23px}")
	document.writeln(".j_normal{font-size:12px; line-height:18px}")
	document.writeln(".j_big{font-size:14px; line-height:20px}")
	document.writeln(".j_small{font-size:10px; line-height:16px}")
	document.writeln(".j_notice{font-size:14px; line-height:20px}")
	document.writeln(".j_photo{font-size:12px; line-height:18px}")
}
else{
	// Windows
	document.writeln(".e9 {font-size:11px; line-height:14px}")
	document.writeln(".e10{font-size:9px; line-height:13px}")
	document.writeln(".e11{font-size:11px; line-height:16px}")
	document.writeln(".e13{font-size:13px; line-height:17px}")
	document.writeln(".e00{font-size:19px; line-height:23px}")
	document.writeln(".e_normal{font-size:12px; line-height:18px}")
	document.writeln(".e_big{font-size:14px; line-height:20px}")
	document.writeln(".e_small{font-size:10px line-height:16px}")
	document.writeln(".e_notice{font-size:14px; line-height:20px}")
	document.writeln(".j9 {font-size:11px; line-height:14px}")
	document.writeln(".j10{font-size:10px; line-height:14px}")
	document.writeln(".j11{font-size:11px; line-height:16px}")
	document.writeln(".j13{font-size:13px; line-height:17px}")
	document.writeln(".j00{font-size:19px; line-height:24px}")
	document.writeln(".j_normal{font-size:12px; line-height:18px}")
	document.writeln(".j_big{font-size:14px; line-height:20px}")
	document.writeln(".j_small{font-size:10px; line-height:16px}")
	document.writeln(".j_notice{font-size:14px; line-height:20px}")
	document.writeln(".j_photo{font-size:12px; line-height:18px}")
}

document.writeln("--></STYLE>");



// ---------- 別ウィンドウ処理

function Hirakegoma(winHref, wSize, hSize) {
    option = "width=" + wSize + ", height=" + hSize + ", status=yes, scrollbars=no, resizable=no, menubar=no, location=no";
    window.open(winHref, "HirakegomaWindow", option);
}


// ---------- スムーススクロール

$(function(){
   $('#scroll a').click(function() {
      var speed = 400;
      var href= $(this).attr("href");
      var target = $(href == "#" || href == "" ? 'html' : href);
      var position = target.offset().top;

	  $($.browser.safari ? 'body' : 'html').animate({scrollTop:position}, speed, 'swing');
      return false;
   });
});






