/* flash */
var flashMovie;

function flash_init(flash){
	if (document.getElementById(flash)) {
		flashMovie = document.getElementById(flash);
	}
}

function flash_switchclip(flash,value) {
	flash_init(flash);
	flashMovie.switchClip(value);
}

function flash_autoplay(flash,value) {
	flash_init(flash);
	flashMovie.autoPlay(value);
}

/* tabs */

var currentvalue = "diashow";

function tab_show(value) {
	document.getElementById("tab-link_" + currentvalue + "-current").className = "hide";
	document.getElementById("tab-link_" + currentvalue + "-no").className = "show";
	document.getElementById("tab-content_" + currentvalue).className = "tabcontent";
	document.getElementById("tab-link_" + value + "-current").className = "show";
	document.getElementById("tab-link_" + value + "-no").className = "hide";
	document.getElementById("tab-content_" + value).className = "tabcontent-show";
	currentvalue = value;
}
