
dc.Event.domReady(function(){
   var content = $('content');
   if(content){
      var file = '/www/site/flash/mapka.swf';
      if(typeof flashPath != 'undefined'){
         file = flashPath + file;
      }
      var d = document.createElement('div');
      var c = document.createElement('div');
      c.className = 'clear';

      d.setAttribute('id','flashContact');
      content.insertBefore(d,content.firstChild);
      var so = new SWFObject(file, "mymovie", "450", "450", "8", "#ffffff");
      so.write("flashContact");
      content.appendChild(c);
   }
});