/* ===================================================================
JS information

 script info :indexスクリプト（ Use jQuery ）
 
 *Since: 2011-04-13
=================================================================== */

$(function() {


	// ブラウザ戻るボタン対策
	$(window).unload(function(){});


	// ウインドウサイズ取得
	var winHeight = $(window).height();
	var vert = winHeight/2 -35;
	$("#index h1").css({paddingTop:vert});


	// ウィンドウリサイズ対応
	$(window).bind('resize', function() {
		if (resizeTimer) clearTimeout(resizeTimer);
			resizeTimer = setTimeout(doSomething, 10);
	});
	var resizeTimer = null;
	function doSomething() {
		var winHeight = $(window).height();
		var vert = winHeight/2 -35;
		$("#index h1").css({paddingTop:vert});
	};


	// ロゴ画像フェード
	$("ul.brands li").find("img").css({opacity:0.5}).hover( function() {
		$("ul.brands li").find("img").css({opacity:0.5}).stop();
		$(this).animate({opacity:1}, 300);
	}, function() {
		$(this).animate({opacity:0.5}, 150);
	});
	

	// 遷移前アニメーション
	$("ul.brands li a, ul.headNav li a.corporate, ul.headNav li a.recruit").click( function() {
		var url = $(this).attr("href");
		$("#index").fadeOut(500, function() {
			location.href = url;
		});
		return false;
	});


	// ポップアップ プライバシーポリシー
	$('a.popupPrivacy').click( function() {
		window.open(this.href, "privacy","width=640,height=640,resizable=yes,scrollbars=1");
		return false;
	});


});
