
  var contHTML = '';
  contHTML += '<div id="blocActu">';
  
        
  var blocNews = function (uneTable){
    var maTable = uneTable;
    this.indiceActu = function(){
      var n;
      if (maTable.length > 1) n = Math.floor(Math.random()*maTable.length);
      else n = 0;
      return n;
    }
    this.miseEnforme = function(i){
      var html ='';
      html +='<div class="uneActu">';
      html +='<a href="' + maTable[i][0] + '"><img src="http://c.orange.fr' + maTable[i][1] + '" width="150" height="100" alt="" /></a>';
        html +='<h3><a href="' + maTable[i][0] + '">' + maTable[i][2].replace("`","'") + '</a></h3>';
        html +='<a href="' + maTable[i][0] + '">' + maTable[i][3].replace("`","'") + '</a> <span class="chevr">&gt;&gt</span>';
        html +='</div>';
        return html;
      }
    }
  
contHTML += '<img id="imgActu" src="http://c.orange.fr/Cinema/Icons/t_zoomsur.gif" width="140" height="24"><div class="nusep"></div>';

    var news1 = new Array();
    
    news1 = [
      
        ['http://www.cine.orange.fr/film/karate-kid-2/bande-annonce?identifiant=iLyROoafvqrW','/Cinema/Magic/Images/157319.jpg','Karaté Kid','Exclu ! bonus vidéo : extraits et interviews des acteurs et du réalisateur (sortie le 04/08)']
    ];
  
    var aBloc1 = new blocNews(news1);
    contHTML += aBloc1.miseEnforme(aBloc1.indiceActu());
    aBloc1 = null;
    
    var news2 = new Array();
    
    news2 = [
      
        ['http://le-choc-des-titans.cine.orange.fr/','/Cinema/Magic/Images/153751.jpg','Le Choc des Titans','Entrez dans la bataille des dieux : photos, videos et jeu concours ! (sortie le 07/04)']
    ];
  
    var aBloc2 = new blocNews(news2);
    contHTML += aBloc2.miseEnforme(aBloc2.indiceActu());
    aBloc2 = null;
    contHTML += '<div class="nusep"></div>';
    var news3 = new Array();
    
    news3 = [
      
        ['http://www.cine.orange.fr/film/camping-2-3/bande-annonce','/Cinema/Magic/Images/154280.jpg','Camping 2','Patrick Chirac est de retour : nouvelles vidéos à découvrir ! (sortie le 21/04)']
    ];
  
    var aBloc3 = new blocNews(news3);
    contHTML += aBloc3.miseEnforme(aBloc3.indiceActu());
    aBloc3 = null;
    
    var news4 = new Array();
    
    news4 = [
      
        ['http://www.cine.orange.fr/zoomsur/solutions-locales-pour-un-desordre-globa','/Cinema/Magic/Images/154281.jpg','Solutions locales pour un désordre global','Vidéos et photos du documentaire de Coline Serreau ! (sortie le 07/04)']
    ];
  
    var aBloc4 = new blocNews(news4);
    contHTML += aBloc4.miseEnforme(aBloc4.indiceActu());
    aBloc4 = null;
    contHTML += '<div class="nusep"></div>';
    contHTML += '</div>';
    document.write(contHTML);
    blocActus.js

