// JavaScript Document
$(document).ready(function(){
if ($("h1.sifr").size()>0) {
var txt = $("h1.sifr").text();
var h = "50";
if (txt.length>38){
h = "110";
}
if (txt.length>76){
h = "160";
}
var fl = '<object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="640" height="'+h+'"><param name="movie" value="/sifr/headline-sifr.swf?txt='+encodeURIComponent(txt)+'" /><param name="align" value="t" /><param name="salign" value="tl" /><param name="quality" value="high" /><param name="wmode" value="opaque" /><param name="swfversion" value="8.0.35.0" /><param value="FlashVars" name="txt='+encodeURIComponent(txt)+'"><!--[if !IE]>--><object type="application/x-shockwave-flash" data="/sifr/headline-sifr.swf?txt='+encodeURIComponent(txt)+'"" width="640" height="'+h+'"><!--<![endif]--><param name="quality" value="high" /><param name="wmode" value="transparent" /><param name="align" value="t" /><param name="salign" value="tl" /><param name="swfversion" value="8.0.35.0" />'+txt+'<!--[if !IE]>--></object><!--<![endif]--></object>';
$("h1.sifr").html(fl);
}
});