﻿//forIndex

jQuery(document).ready((function($) {
	
	//ボタン光らせる
	$('#btnIndexTrailer a').btnFlash();
	$('#dvd a').btnFlash();
	$('#xmasPresent a').btnFlash();
	$('#poster a.left').btnFlash();
	$('#poster a.right').btnFlash();
	$('#btnKerudio a').btnFlash();
	$('#btnPosterContest a').btnFlash();
	
	//ポスター制御
	$('#poster .left').click(function(){
		$('#loupe a').toggle();
		$('#posterImg a').toggle('drop',{direction:'left'});
	});
	$('#poster .right').click(function(){
		$('#loupe a').toggle();
		$('#posterImg a').toggle('drop',{direction:'right'});
	});
	
	
	//スプラッシュIN
	$('body').append('<div id="Splash"><a href="javascript:void(0);"><img src="img/index/kerudio_0215.png" alt="" width="869" height="532" /></a></div>');
	$('#Splash').click( function(){
		$('#Splash').fadeOut('slow',function(){
			$(this).find('a').hide();
		});
	});
	$('#Splash').bind('contextmenu',function(){
	  alert('右クリックは禁止です。画像のコピーはしないでね。');
	  return false;
	});
	
	$('#Splash > a').hide();
	$('#btnKerudio').click( function(){ splashFdin() } );
	
	$('#Splash a img').imagesLoaded(function(){
		splashFdin();
	});
	function splashFdin(){
		$('#Splash').css('height',$(document).height()+'px').fadeIn('slow',function(){
			$('#Splash > a').css('top','-200px').fadeIn().queue([]).animate(
			 {top:$(window).scrollTop()+30+'px'},{duration:700,easing:'easeOutBack'}
			);
		});
	}
	
}));



