// JavaScript Document
function showFlash(lang){
	value_html = $("#div_flash_" + lang).html();
	$("#div_flash").html(value_html);
	$("#div_popup").show();
	$("#videoThumb").hide();
	
	
	//document.getElementById('div_flash').innerHTML = document.getElementById('div_flash' + number).innerHTML;
}// end function
function hideFlash(){
	$("#videoThumb").show();
	$("#div_flash").html('');
	$("#div_popup").hide();
	
}

function changeVideo(){
	var flashvars = {};
	var params = {wmode:'transparent'};
	var attributes = {};		
	swfobject.embedSWF("swf/VideoPlayer.swf", "videoThumb", "944", "364", "9.0.0","swf/expressInstall.swf", flashvars, params, attributes);
}

