/* ------------ FUNZIONI GESTIONE VIDEOPLAYER ------------- */
/* -------------------------------------------------------- */

$(function() {

  var Url = window.location.host;
  var Produzione = 'www.midas.it';

  if (Url == Produzione) {
      $f("player", "swf/flowplayer.commercial-3.2.5.swf", {
        key: '#$bae9b2c56633238c3a0',
        logo: { opacity:0 },
        clip: { autoPlay: true, autoBuffering: true, onFinish: function() {$("div#col-sx-img").animate({marginLeft: '9px'}, 800); this.unload();} },
        play: { opacity:0 }
      });

  } else {

    $f("player", "swf/flowplayer-3.2.5.swf", {
      clip: { autoPlay: true, autoBuffering: true, debug: true, onFinish: function() {$("div#col-sx-img").animate({marginLeft: '9px'}, 800); this.unload();} },
      play: { opacity:0 }
    });

  }

}); 


/* ----- CHIUDE FANCYBOX (POPUP) DOPO X MILLISECONDI ----- */
/* ------------------------------------------------------- */

function Autostart() {
  t=setTimeout('$.fancybox.close( $f().play() );',10000);
}


/* ------------ FUNZIONI GESTIONI MENU VIDEO / PLAYER ------------- */
/* ---------------------------------------------------------------- */

function TGA() {
  var Simulatore = $('div#coperta').hasClass('on');
  if (Simulatore == true) {
    $("div#col-sx-img").animate({marginLeft: "9px"}, 800);
    $f().unload();
  } else {
    $("div#video_menu").hide();
    $("div#coperta").show();
    $("div#video_menu").removeClass("on");
    $("div#video_menu").addClass("off");
    $("div#coperta").removeClass("off");
    $("div#coperta").addClass("on");
    $("div#col-sx-img").css("marginLeft", "9px");
    $("div#video_menu_content").hide();
  }
};

function Videomenu() {
  $("div#video_menu").show();
  $("div#coperta").hide();
  $("div#coperta").removeClass("on");
  $("div#coperta").addClass("off");
  $("div#video_menu").removeClass("off");
  $("div#video_menu").addClass("on");
  $("div#col-sx-img").css("marginLeft", "9px");
  $("div#video_menu_content").show();
};

function Replay() {
  $("div#col-sx-img").css("marginLeft", "-360px");
  $f().play();
};


/* ------------ FUNZIONI AL CARICAMENTO ------------- */
/* -------------------------------------------------- */

$(document).ready(function() {

  $("div#coperta").show();
  $("div#video_menu").hide();

/* ----- START FANCYBOX (POPUP) ----- */
/* ---------------------------------- */

$f().play();

/*
$("a#hidden_link").fancybox({
  'width' : 616,
  'height' : 301,
  'autoScale' : false,
  'autoDimensions': true,
  'transitionIn' : 'none',
  'transitionOut' : 'none',
  'type' : 'iframe',
  'onComplete' : true,
  'padding' : 0,
  'margin' : 0,
  'overlayOpacity': 0.8,
  'overlayColor' : '#000',
  'scrolling' : 'no',
  'onClosed' : Autostart(),
  'hideOnOverlayClick':false
}).trigger('click');
*/

/* ----- FA PARTIRE IL FILMATO ALLA CHIUSURA DEL POPUP ----- */
/* --------------------------------------------------------- */
/*
$("#fancybox-close").live('click', function(){
  $f().play();
  clearTimeout(t);
  })
*/


}); 


