// JavaScript Document
function random_pray() {
var u = new Array();
u[0] = "http://www.youtube.com/v/FmS9h99NPXA&hl=ja_JP&fs=1";
u[1] = "http://www.youtube.com/v/ldrSWl21O90&hl=ja_JP&fs=1";
u[2] = "http://www.youtube.com/v/FJI_T--8rsU&hl=ja_JP&fs=1";
var n = Math.floor(Math.random()*u.length);
var e = document.getElementById("randomYoutube");
e.innerHTML = "<object width='200' height='150'><param name='movie' value='" + u[n] + "'></param><param name='allowFullScreen' value='true'></param><param name='allowscriptaccess' value='always'></param><embed src='" + u[n] + "&autoplay=1&loop=1' type='application/x-shockwave-flash' allowscriptaccess='always' allowfullscreen='true' width='200' height='150'></embed></object>";
}