/*---------------------------------------------------------*/
/*　　GranAileサイト トップ JavaScript Module              */
/*　　home.js                                              */
/*　　Copyright(C) 2009 Cybax inc. All rights reserved.　　*/
/*---------------------------------------------------------*/

/*------------------------- Index ------------------------*/
/*
#1　初期化 (定数、変数の設定など)
#2　Swap Image の設定
#3　GranAileログイン
*/
/*--------------------- End of Index ---------------------*/

/* #1 初期化
===================================================================*/

/* #2 jQuery 
===================================================================*/
$(function() {

	/* #2-1 Swap Image の設定 （jquery.js内のjquery.rollover.js使用）
	------------------------------------------------------------*/
	$('#aboutGA img').rollover();          // トップページGAとはボタン
	$('#topMenu img').rollover();          // トップページGAとはボタン
	
	urchinTracker();
});

/* #3 GranAileログイン 
===================================================================*/
function LoginGranAile(){
	objForm = document.getElementById('frmLogin');
	
	if( objForm.user_id.value == '' ) {
		alert('IDを入力してください');
		objForm.user_id.focus();
	} else if( objForm.user_pass.value == '' ) {
		alert('パスワードを入力してください');
		objForm.user_pass.focus();
	} else {
		objForm.submit();
	}
}


