Event.observe(window, "load", function() {
	$$('.YTFComponent>ul>li>a').each(function(eachLink) {
		eachLink.onclick = function() {
			myLightWindow.activateWindow({
				type: 'external',
				href: this.href,
				title: this.title,
				width: 425,
				height: 340,
				loadingAnimation: true
			});
			return false;
		}	
	});
});
