$(document).ready(function(){
    $('#flash-world').flash(
        null,
        { version: 7 },
        function(opt) {
            $this = $(this);
            var p = $this.children().attr('rel').split(';');
            opt.src = p[0];
            opt.width = p[1];
            opt.height = p[2];
            opt.flashvars.drzave = p[3];
            $this.replaceWith($.fn.flash.transform(opt));
            // alert($.fn.flash.transform(opt));
        }
    ).empty();
});

$(document).ready(function(){
    $('#flash-graph').flash(
        null,
        { version: 7 },
        function(opt) {
            $this = $(this);
            var p = $this.children().attr('rel').split(';');
            opt.src = p[0];
            opt.width = p[1];
            opt.height = p[2];
            opt.flashvars.dnevi = p[3];
            $this.replaceWith($.fn.flash.transform(opt));
            //alert($.fn.flash.transform(opt));
        }
    ).empty();
});

$(document).ready(function(){
    $('input[@type="text"]').focus(function()
    { 
        $(this).select();
    });
});
