$('link[@rel*=style][title]').attr('disabled', true);

var o_cm;
var $o_flash;

$(document).ready(function() {

 // Inicjacja elementów Flasha:
 $o_flash = $('#intro').html($.flash.create({
  swf: $.GLOBALS.DIR_HTML + 'images/flash.swf',
  width: $('#body').width(),
  height: $('#body').height(),
  flashvars: $.GLOBALS.FLASHVARS_INTRO,
  params: {
   bgcolor: '#000000',
   loop: false,
   menu: false,
//   wmode: 'opaque'
   wmode: 'transparent'
  }
 }));

 // Pomiń intro:
 $('#skipIntro > a').click(function() {
  $(this).hide();
  $o_flash.flash(function() { 
   this.TGotoFrame('_root.mc_intro', 510);
   this.TPlay('_root.mc_intro');
  });
  return false;
 });

 o_cm = new ContentManager();
});

function beforeIntro() {
 $('#skipIntro').show();
}

function afterIntro() {
 var i_frameToSkip;

 switch ($.GLOBALS.CURRENT_SITE) {
  case 'news': i_frameToSkip = 516; break;
  case 'music': i_frameToSkip = 517; break;
  case 'video': i_frameToSkip = 518; break;
  case 'linki': i_frameToSkip = 520; break;
  case 'special': i_frameToSkip = 521; break;
  case 'press': i_frameToSkip = 522; break;
  case 'contact': i_frameToSkip = 523; break;
  case 'polityka_prywatnosci': i_frameToSkip = 524; break;
 };

 if (i_frameToSkip != undefined) $o_flash.flash(function() { this.TGotoFrame('_root.mc_intro', i_frameToSkip-1); });

 o_cm.load({url: $.GLOBALS.URL_CURRENT});
 $('#skipIntro').hide();
}