﻿/**
*	shared-src.js
*/
$(function() {
		   
/* ロールオーバ
-----------------------------------------------------------------------------------*/

	// ロールオーバ画像のファイル名のポストフィックス.
	var postfix = '-on';
	
	// ナビゲーション画像セレクションオブジェクト.
	var navImgOb = $('div.nav ul img');
	
	// body要素のクラス属性値からページ識別値を取得する.
	var bodyClasses = $('body').attr('class').split(' ', 2);
	var bodyUri = bodyClasses[0];

	function changeCurrentNavImg() {
		
		navImgOb.each(function() {
			// ナビ画像のクラス値がbodyのクラス値と一致し、画像ファイル名にpostfixを含まない場合
			if ($(this).attr('class') === bodyUri && $(this).attr('src').indexOf(postfix) < 0) {
				$(this).attr('src', $(this).attr('src').replace(/^(.+)(\.[a-z]+)$/, '$1' + postfix + '$2'));
			}
		});
	}

	function rolloverNavImg() {
		navImgOb.mouseover(function(){
			// ナビ画像のクラス値がbodyのクラス値と一致していない場合
			if ($(this).attr('class') !== bodyUri) {
				$(this).attr('src',$(this).attr('src').replace(/^(.+)(\.[a-z]+)$/, '$1' + postfix + '$2'));
			}
		}).mouseout(function(){
			if ($(this).attr('class') !== bodyUri) {
				$(this).attr('src',$(this).attr('src').replace(/^(.+)-on(\.[a-z]+)$/, '$1$2'));
			}
		});
	}

/* _blank
-----------------------------------------------------------------------------------*/
	function openWindow() {
		var aopen = $('a.open');
    		aopen.css('padding-right','18px').css('background','url(/pc/shared/img/ico-popup-01.gif) no-repeat 100% 50%');
    		aopen.click(function(){
        		window.open(this.href, '_blank');
        		return false;
    		});
	}

/* スムーススクロール
-----------------------------------------------------------------------------------*/
	function setSmoothScroll() {
		$('a[href*=#]').click(function() {
			if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
				var target = $(this.hash);
				target = target.length && target;
				if (target.length) {
					var sclpos = 30;
					var scldurat = 1200;
					var targetOffset = target.offset().top - sclpos;
					$('html,body')
						.animate({scrollTop: targetOffset}, {duration: scldurat, easing: "easeOutExpo"});
					return false;
				}
			}
		});
	}

/* ディスパッチャー
-----------------------------------------------------------------------------------*/
	changeCurrentNavImg();
	rolloverNavImg();
	openWindow();
	setSmoothScroll();
});


