// IE7 has a new "security feature" that forces the user to click the flash object before it is activated
// This script tricks IE7 into activating it without requiring a click by the user.
// This must be run AFTER all flash objects have been placed on the page.
theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++)
{
	theObjects[i].outerHTML = theObjects[i].outerHTML;
}