// Adapted from http://www.amarasoftware.com/flash-problem.htm
// detects if IE is being used, if so it does this funky thing to avoid "Click to activate"
// without browser detection, the flash doesn't show up in Safari on OSX

var browser=navigator.appName
if (browser == "Microsoft Internet Explorer") {
	theObjects = document.getElementsByTagName("object"); 
	for (var i = 0; i < theObjects.length; i++) { 
	theObjects[i].outerHTML = theObjects[i].outerHTML; 
	}
}