/**
 * exchange headlines.
 */
$(document).ready(
		function() {
			var target = $('h1.contentHeadline');
			target.each( function(i) {
				var text = $(this).text();
				if (text == '') {
					return;
				}
				swfobject.embedSWF("../../flash/headlines.swf", this, "360",
						"28", "9", null, {
							text :text
						}, {
							allowscriptaccess :"sameDomain",
							bgcolor :"#000",
							wmode :"transparent"
						});
			});

		});
