
function loadYoutubeWindow() {
	var nodes = document.getElementsByTagName("A");
	var reg = new RegExp("v=([A-Za-z0-9_-]+)$");
	var res;
	var i;
	for (i=0; i<nodes.length; i++) {
		var node = nodes[i];
		res = unescape(node.href).match(reg);
		if (node.href.indexOf("youtube.com") != -1 && res != null && res.length > 0) {
			node["href"] = "/youtube?id=" + res[1];
			//node["href"] = "http://www.youtube.com/v/" + res[1];
			node.className = (node.className) + " lWOn";
			node.setAttribute("params", "lWWidth=425,lWHeight=355");
			//node.onclick = function (event) { (new lightWindow()).activate(event, this); return false; };
			//node.onclick = function (event) { alert((new lightWindow()).activate); return false; };
		}
	}
}
loadYoutubeWindow();
