<!--
	// hides static image files for browsers that support javascript
	var lngFlashCountLength;

	if (document.getElementsByName("flashCount")) { 
		if(document.getElementsByName("flashCount")[document.getElementsByName("flashCount").length - 1]){
			lngFlashCountLength = document.getElementsByName("flashCount")[document.getElementsByName("flashCount").length - 1].value;

			for(i=0; i<=lngFlashCountLength; i++){
				if(document.getElementById("objImageFileStatic" + i)){
					document.getElementById("objImageFileStatic" + i).style.display = "none";
				}
			}
		}
	}

	// safari and opera browsers get a special event handler within the navigation
	if(blnOpera || blnSafari){
		if (lngFlashCountLength >= 0) {
			for(var h = 0; h < document.getElementsByTagName("li").length; h++) {
				if (document.getElementsByTagName("li")[h].getAttribute("class", false) == "FF_NavigationBarSilo") {
					navRoot = document.getElementsByTagName("li")[h];
					node = navRoot
					if (node.nodeName=="LI") {				
						node.onmouseover= function() {hideFlash(); }
						node.onmouseout= function() {showFlash();}
					}
				}
			}
		}
	}

	// hides flash files for opera and safari browsers and displays image files instead
	function hideFlash(){
		if(blnFlashInstalled){
			if(blnOpera || blnSafari){
				if (lngFlashCountLength >= 0) { 
					for(i=0; i<=lngFlashCountLength; i++){
						if(document.getElementById("flashContent" + i)){						
							document.getElementById("flashContent" + i).innerHTML = eval("strHTMLContentImage" + i);
						}
					}	
				}			
			}
		}
	}
	
	// hides images files for opera and safari browsers and displays flash files instead
	function showFlash(){
		if(blnFlashInstalled){
			if(blnOpera || blnSafari){
				if (lngFlashCountLength >= 0) { 
					for(i=0; i<=lngFlashCountLength; i++){
						if(document.getElementById("flashContent" + i)){
							document.getElementById("flashContent" + i).innerHTML = eval("strHTMLContentFlash" + i);
						}
					}	
				}			
			}
		}
	}
	
	// initial swap of content, because opera has some rendering issues while rendering flash and image content first time
	if(blnOpera){
		if (lngFlashCountLength >= 0){
			hideFlash();
			showFlash();
		}
	}
//-->