// Po spusteni skriptu neni potreba aktivovat flashe kliknutim. (V IE)
// (c) David Grudl aka -dgx-
//
// more info: http://www.dgx.cz/knowhow/eolas-workaround/
//
// updated by Josef Šíma - Chose
// http://www.chose.cz/weblog/index.php/jak-obejit-nefunkcni-flashe-po-aktualizaci-ie/
//
// and Jaromir Viteker - removes object "data" atribute - causes IE to stuck

	var objects = document.getElementsByTagName("object");
	for (var i=0; i<objects.length; i++) {
        objects[i].removeAttribute("data");
        objects[i].outerHTML = objects[i].outerHTML;
	}

