function init_youtube(){
	var videos = document.getElementsByTagName('A');
	for (n=0;n<videos.length;n++){
		if(videos[n].getAttribute('title')=='[youtube]'){
			insert_video(videos[n]);
		}
	}
}
function insert_video(a){
	var src=a.href;
	a.href='#';
	a.setAttribute('title',a.innerText);
	a.innerHTML="<object width=\"425\" height=\"350\"><param name=\"movie\" value=\""+src+"\"></param><param name=\"wmode\" value=\"transparent\"></param><embed src=\""+src+"\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"425\" height=\"350\"></embed></object><br />" + a.innerHTML;
}
window.onload = init_youtube;
