function hide() {
	document.getElementById("l1").style.display = "block";
	document.getElementById("r2").style.display = "block";
}

if (window.addEventListener){
	window.addEventListener("load", hide, false);
}
else if (window.attachEvent){
	window.attachEvent("onload", hide);
}




