if (document.body) {  		
    var larg_site = (document.body.clientWidth)
    var haut_site = (document.body.clientHeight)
  }
  else {
    var larg_site = (window.innerWidth)
    var haut_site = (window.innerHeight)
  }
    
   if ( haut_site < 800)
    haut_site = 800;
    
  if ( larg_site < 990)
    larg_site = 990;
    
$j('#flash').css('width',larg_site+'px');
$j('#flash').css('height',haut_site+'px');

$j('#img1').css('width',larg_site+'px');
$j('#img2').css('width',larg_site+'px');
$j('#img1').css('height',haut_site+'px');
$j('#img2').css('height',haut_site+'px');

$j('#img3').css('width',larg_site+'px');
$j('#img3').css('height',haut_site+'px');

$j('#img4').css('width',larg_site+'px');
$j('#img4').css('height',haut_site+'px');

$j('#img5').css('width',larg_site+'px');
$j('#img5').css('height',haut_site+'px');

var maFooter   = document.getElementById("footer");
var hauteur_maFooter = maFooter.offsetHeight;
$j('#footer').css('height',hauteur_maFooter+'px');
$j('#footer').css('top',haut_site-hauteur_maFooter+'px');

$j('#footer_indexation').css('width',larg_site-60+'px');

var maFooter1   = document.getElementById("footer1");
var longueur_maFooter1 = maFooter1.offsetWidth;
$j('#tpbgd').css('left',(((larg_site-202)-(longueur_maFooter1+30))/2)+(longueur_maFooter1+30)-104+'px');

$j('#barre_gauche').css('height',haut_site-hauteur_maFooter-23-17+'px');

//$j('.facebook').css('top',haut_site-hauteur_maFooter-20+'px');

$j('.investissement').css('top',haut_site-hauteur_maFooter-23-85+'px');

    
$j('.ppt li:gt(0)').hide();
$j('.ppt li:last').addClass('last');
var cur = $j('.ppt li:first');
 
function animate() {
	cur.fadeOut( 1000 );
	if ( cur.attr('class') == 'last' )
		cur = $j('.ppt li:first');
	else
		cur = cur.next();
	cur.fadeIn( 2000 );
}
 
 
//$j(function() {
	//setInterval( "animate()", 5000 );
//} );
