var flashvars_movies = {};
var params_movies = {};
var attributes_movies = {};

/*
*/

window.onload=function(){

	var flashvars = {};
	var params = {};
	var attributes = {};

	// Treasure Hunt
	swfobject.embedSWF("hidden_00.swf", "myAlternativeContent", "640", "480", "9.0.0", false, flashvars, params, attributes);
	params.bgcolor="#ffffff";

	// Movies
	params_movies.allowFullScreen="true";
	params_movies.bgcolor="#000000";

	// Default movie
	changeFLV('001','false');

	// Button settings
	setEventAndStyle();

}

/*
*/
function changeFLV(flvfile,autoplay){

	flashvars_movies.flvname=flvfile;
	flashvars_movies.autoplay=autoplay;
	swfobject.embedSWF("flv_player.swf", "landho_movies", "320", "260", "9.0.0", false, flashvars_movies, params_movies, attributes_movies);

}

function setEventAndStyle(){

	// Event
	document.getElementById('movie001').onclick=function(){changeFLV('001','true');};
	document.getElementById('movie002').onclick=function(){changeFLV('002','true');};
	document.getElementById('movie003').onclick=function(){changeFLV('003','true');};

	// Mouse Event
	/*
	  IE6までは、li:hoverは機能しないため、ここでイベント設定を行う。
	*/

	// Episode1
	document.getElementById('movie001').onmouseover=function(){
		document.getElementById('movie001').style.backgroundPosition="0 -35px";
	};
	document.getElementById('movie001').onmouseout=function(){
		document.getElementById('movie001').style.backgroundPosition="0 0";
	};

	// Episode2
	document.getElementById('movie002').onmouseover=function(){
		document.getElementById('movie002').style.backgroundPosition="0 -35px";
	};
	document.getElementById('movie002').onmouseout=function(){
		document.getElementById('movie002').style.backgroundPosition="0 0";
	};

	// Episode3
	document.getElementById('movie003').onmouseover=function(){
		document.getElementById('movie003').style.backgroundPosition="0 -35px";
	};
	document.getElementById('movie003').onmouseout=function(){
		document.getElementById('movie003').style.backgroundPosition="0 0";
	};

}
