/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   After Microsoft delivered an update for Internet Explorer 6
   All active controls (like a Flash menu, for instance) 
   must be clicked to "approve" it before the Flash navigation buttons will work.  
   The following fix will avoid having the browser receive this message:
   "Click to activate and use this control"
   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~  */

theObjects = document.getElementsByTagName("object"); 

for (var i = 0; i < theObjects.length; i++) 
{ 
	theObjects[i].outerHTML = theObjects[i].outerHTML; 
}

