$(document).ready(function(){
  
  var cart = 'http://boutique.tres-tot-theatre.com/index.php/cart/micro?url='+encodeURIComponent(window.location)+'&bg='+encodeURIComponent($('body').css('backgroundColor'));
  
  /*
  $('#corps h4.cmd a').click(function(){
    if ( $.browser.msie && parseFloat($.browser.version) < 8 )
    alert("Votre version d'Internet Explorer n'est pas conforme aux standards et ne permet pas un affichage optimal. Desactivez l'option \"Navigation de sous-cadres sur différents domaines\" pour une solution paliative. Pour vous permettre de continuer votre navigation une nouvelle fenetre va s'ouvrir.");
  });
  */
  
  $('#corps h4.cmd a').fancybox({
    type: 'iframe', 
    width: 700,
    height: '90%',
    onClosed: function(){
      $('#cart').attr('src',cart);
    }
  });
  
  if ( location.search )
    args = location.search.split('?')[1].split('&');
  else args = [];
  pairs = [];
  for ( i in args )
    pairs[args[i].split('=')[0]] = args[i].split('=')[1];
  if ( pairs['e-voucher'] == 'cart' )
    $.fancybox({
      href: 'http://boutique.tres-tot-theatre.com/index.php/cart/view',
      type: 'iframe', 
      width: 700,
      height: '90%',
      onClosed: function(){
        $('#menuDeroulant select').change();
      }
    });
  else if ( pairs['e-voucher'] == 'commit' )
    $.fancybox({
      href: 'http://boutique.tres-tot-theatre.com/index.php/user/process',
      type: 'iframe', 
      width: 700,
      height: '90%',
      onClosed: function(){
        $('#menuDeroulant select').change();
      }
    });
  
  $('#corps').prepend('<iframe id="cart" src="'+cart+'" frameborder="0"></iframe>');
});

