function replaceit() {
	
	var headlines = document.getElementsByTagName('h1');
	
	for(var i = 0; i < headlines.length; i++){
		
		var txt = htmlspecialcharsHeadline(headlines[i].innerHTML);
		
		headlines[i].innerHTML="<object id='flashheadlineObj"+i+"' height='22' width='650' name='flashObj' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0' classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000'>";
		
		headlines[i].innerHTML+="<param value='sameDomain' name='allowScriptAccess'/>";
		headlines[i].innerHTML+="<param value='txt="+txt+"' name='flashVars' />";
		headlines[i].innerHTML+="<param name='movie' value='typo3conf/ext/dp_flashheadline/res/dp_flashheadline.swf' />";
		headlines[i].innerHTML+="<param value='false' name='menu' />";
		headlines[i].innerHTML+="<param value='transparent' name='wmode' />";
		headlines[i].innerHTML+="<param value='high' name='quality'/>";
		headlines[i].innerHTML+="<param value='#e3e3e3' name='bgcolor'/>";
		//headlines[i].innerHTML+="<param name='align' value='left'/>";
		headlines[i].innerHTML+="</object>";
		headlines[i].innerHTML="<embed id='flashheadline"+i+"' height='22' width='650' name='flash' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' allowscriptaccess='sameDomain' wmode='transparent' bgcolor='#e3e3e3' quality='high' menu='false' flashvars='txt="+txt+"' src='typo3conf/ext/dp_flashheadline/res/dp_flashheadline.swf'/>";
		
	}	

}

function htmlspecialcharsHeadline(str) {
    if(typeof str=="undefined") str="";
    
    str = str.replace("&", "(und)");
    str = str.replace("%", "(proz)");
    str = str.replace("=", "(gleich)");
    str = str.replace(" ", "(leer)");

    return str;
}

Event.observe(window, 'load', function() { replaceit(); }); // PROTOTYPE
//window.addEvent('domready', function() { replaceit(); }); // MOOTOOLS

