function blocHeight() {
	var blocB=document.getElementById("blocB");
	var blocV=document.getElementById("blocV");
	var blocR=document.getElementById("blocR");
	var hauteurMax=0;
	
	if ( (blocB.offsetHeight > blocV.offsetHeight) && (blocB.offsetHeight > blocR.offsetHeight) ) {
		hauteurMax = blocB.offsetHeight;
		}
	if ( (blocV.offsetHeight > blocB.offsetHeight) && (blocV.offsetHeight > blocR.offsetHeight) ) {
		hauteurMax = blocV.offsetHeight;
		}
	if ( (blocR.offsetHeight > blocV.offsetHeight) && (blocR.offsetHeight > blocB.offsetHeight) ) {
		hauteurMax = blocR.offsetHeight;
		}
	
	blocB.style.height=hauteurMax+'px';
	blocV.style.height=hauteurMax+'px';
	blocR.style.height=hauteurMax+'px';
	}

function ligne_new(vid) {
	var ligne = document.getElementById(vid);
	if (document.body) {
		ligne.style.width = document.body.clientWidth+'px';
		} 
		else {
			ligne.style.width = window.innerWidth+'px';
			}
	}
	
	
function fct_hover_news(news) {
	//var news = document.getElementById(id);
	news.style.backgroundColor = "#F7F7F7";
	}
function fct_out_news(news) {
	//var news = document.getElementById(id);
	news.style.background = "none";
	}
