/*//////////////////////////////////////////////////////////////////////
	
	[ Mizunosangyo.co.,LTD ]
	
	1.画像のロールオーバー
	2.ログインフォームのアクティブ・非アクティブ
	
	*require jQuery1.2.x*

//////////////////////////////////////////////////////////////////////
006_Mizuno-W2C v3.6.F0026.B0021-C0018 2008/08/15 S.Kawano        デザインリニューアルに伴う変更、追加
*/

//***********************************************

// 1.画像のロールオーバー

//***********************************************
jQuery(rollOverImages = function() {
	//すべての画像タグを取得
	jQuery('img').each(function() {
		if(this.src.match("_off.")) {
			//通常の画像のパス
			this.originalSrc = this.src;
			
			this.temporarySrc = this.originalSrc.replace(/_off/,'');
			//マウスオーバー時の画像のパス
			this.rolloverSrc = this.temporarySrc.replace(/(\.gif|\.jpg|\.png)/,'_on'+"$1");
			//画像のプリロード処理開始
			preloadImage(this.rolloverSrc);
			//Mouseover
			this.onmouseover = function() {
				this.src = this.rolloverSrc;
			}
			//Mouseout
			this.onmouseout = function() {
				this.src = this.originalSrc;
			}
		}
	});
});

//***********************************************
preloadImages = [];
preloadImage = function(path) {
	var pre = preloadImages;
	var len = pre.length;
	pre[len] = new Image();
	pre[len].src = path;
}

//***********************************************

// 2.ログインフォームのアクティブ・非アクティブ

//***********************************************
jQuery(focusForm = function() {
	jQuery('#header .login-area input').each(function() {
		this.onfocus = function() {
			jQuery(this).addClass('active');
		}
		this.onblur = function() {
			jQuery(this).removeClass('active');
		}
	});
});