/**
 * @author his90
 */
var ajax;
function show_video(id)
{	
	if($('VideoBg').style.display == '')
	{
		show_video_content(id);
	}else
	{
		new Effect.BlindDown($('VideoBg'),{duration:1,from:0,to:1});
		show_video_content(id);
	}//end if
}//end func


function show_video_content(id)
{
	document.getElementById("VideoContent").innerHTML = "<div style=text-align:center;>載入中請稍後...</div>";
	var QString="&id="+id;
	ajax =  new Ajax.Updater('VideoContent','ajax/video.php',{method:'post', postBody:QString, onComplete:function(){new Effect.Appear('VideoContent',{duration:1,from:0,to:1});},asynchronous:true, evalScripts:true});
}
