
function gros_clic() {
	/* le gros clic, on en a une enorme envie :) */
	if(!document.getElementById) return;
	if(!document.getElementById("promo")) return;

	p = document.getElementById("promo");
	a = p.getElementsByTagName("a").item(0).href;
	p.onclick = function () { document.location.href = a; }
	p.onmouseover = function () { window.status = a; p.className = "reactif"; }
	p.onmouseout = function () { window.status = ''; p.className = ""; }
}

window.onload = gros_clic;
