function refreshLightwindowLinks() { 
			if (!myLightWindow) { 
				lightwindowInit(); 
			} else { 
				var links = $$('.'+myLightWindow.options.classNames.standard); 
				links.each(
					function(link) { 
						if (link.onclick == null) { 
							// the important modification 
							myLightWindow._processLink(link); 
						} 
					}
				); 
			}
		}