function initVideoText(container_width, container_height){
	
	var links = $$('a.videotext');
	
	for(i = 0; i < links.length; i++){
		links[i].i = i;
		links[i].onclick = function(){
			
			Shadowbox.open({
				content:    '<div id="videotext">' + document.getElementById("videotext_content_" + links[this.i].i).innerHTML + '</div>', // '<div id="welcome-msg">Welcome to my website!</div>',
				player:     "html",
				// title:      "Welcome",
				width:      container_width,
				height:     container_height
			});

			return false;
			
		} // function
	} // for

} // function

