/*********************************************************************************************This Script is designed to fix the Firefox 2.0 bug with flash videos playing in the lightbx feature. Other Required Scripts and CSShttp://www.worldvision.org/resources.nsf/browserdetect.jshttp://www.worldvision.org/resources.nsf/cfLightBox.jshttp://www.worldvision.org/resources.nsf/wv-v8-lightbox-styles.css*************************************************************************************************/var fixLightBox = function(){try{	document.getElementById('shadowIframe').onload = function(){		if(document.getElementById('bodyShadow')){			var objShadow = document.getElementById('bodyShadow');			var objZindex = objShadow.style.zIndex;			objShadow.style.zIndex = -1;			document.getElementById('bodyShadow').focus();			objShadow.style.zIndex = objZindex;		}	}}catch(e){}}
