flvLinks = function() {

	if (document.getElementById) {
		
		thumbsList = document.getElementById("thumbs");
		thumbLinks = thumbsList.getElementsByTagName("a");
		
		for (i=0; i<thumbLinks.length; i++) {		
			
			node = thumbLinks[i];
			
			if (node.nodeName=="A") {		
				/*attach the onclick event to all links in this id	*/
				node.onclick=function() {
					/*get the variable from the end of the href*/
					flv = this.href.substring(this.href.lastIndexOf('?')+1);
					title = this.getAttribute('title');
					/*pass the variable to the function*/
					document.getElementById("videoTitle").innerHTML = title;
					loadFlv(flv);
					/*keep the page from loading the href*/
					return false;
				}
			}			
					
		}
	}
}

addEvent(window,'load',flvLinks,false);

