// -----------------------------------------------------------------------------------
//		スムーズスクロール
// -----------------------------------------------------------------------------------

Event.observe(window, 'load', function() {

	if (!document.getElementsByTagName) { return false; }
	if (!document.getElementById) {	return false; }

	$$('a[href^=#]:not([href=#])').each(function(element) {

		element.observe('click', function(event) {
			new Effect.ScrollTo(this.hash.substr(1));
			Event.stop(event);
		}.bindAsEventListener(element))
	})
})



// -----------------------------------------------------------------------------------
//		リンク設定 　「http://」又は「https://」で始まるリンクは別ウインドウで開く
// -----------------------------------------------------------------------------------


Event.observe(window, 'load', function() {

	if (!document.getElementsByTagName) { return false; }
	if (!document.getElementById) {	return false; }

	$$('a[href^="http://"]:not([href^="http://www.softbankhc.co.jp/"])','a[href^="https://"]:not([href^="https://www.softbankhc.co.jp/"])').each(function(element) {
		element.observe('click', function(event) {
		    window.open(this.href, "_blank");
			Event.stop(event);
		}.bindAsEventListener(element))
	})
})

