// Flash fix for Internet Explorer
// Removes the 'click to activate' thingy

// Rewrite the innerHTML of element 'flash', which deactivates the 'click to activate' thing
if (document.getElementById('flash'))
{
	var flash = document.getElementById('flash');
	var flashCode = flash.innerHTML;
	flash.innerHTML = flashCode;
	flash.zIndex = 0;
}