﻿var hack_SaveHomeActuContent = null;

function show(id) {
    var tmp = null;
    var divOuToutMettre = document.getElementById("homeactu");
    var imgBackground = "";
    
    tmp = document.getElementById("homeactuUS");
    if (!tmp) tmp = document.getElementById("homeactu");
    if(!hack_SaveHomeActuContent)
	hack_SaveHomeActuContent = tmp.innerHTML;

    if (id == "contenthome_actu") {
	tmp = document.getElementById("homeactu");
	imgBackground = "url(marathon/2010/images/bg-home-actu.png)";
    } else if (id == "contenthome_inscription") {
	tmp = document.getElementById("homeinscr");
	imgBackground = "url(marathon/2010/images/bg-home-inscription.png)";
    } else if (id == "contenthome_resultats") {
	tmp = document.getElementById("homeresul");
	imgBackground = "url(marathon/2010/images/bg-home-resultats.png)";
    } else if (id == "contenthome_preparation") {
	tmp = document.getElementById("homeprepa");
	imgBackground = "url(marathon/2010/images/bg-home-prepa.png)";
    }

    if (! tmp) {
	divOuToutMettre = document.getElementById("homeactuUS");
	if (id == "contenthome_actu") {
	    tmp = document.getElementById("homeactuUS");
	    imgBackground = "url(marathon/2010/images/bg-home-actu_US.png)";
	} else if (id == "contenthome_inscription") {
	    tmp = document.getElementById("homeinscrUS");
	    imgBackground = "url(marathon/2010/images/bg-home-inscription_US.png)";
	} else if (id == "contenthome_resultats") {
	    tmp = document.getElementById("homeresulUS");
	    imgBackground = "url(marathon/2010/images/bg-home-resultats_US.png)";
	} else if (id == "contenthome_preparation") {
	    tmp = document.getElementById("homeprepaUS");
	    imgBackground = "url(marathon/2010/images/bg-home-prepa_US.png)";
	}
    }


    //    if (document.all)
	divOuToutMettre.style.backgroundImage = imgBackground;
	//else
	//	divOuToutMettre.setAttribute("style", "background-image:" + imgBackground + ";");

    if (id == "contenthome_actu") {
	divOuToutMettre.innerHTML = hack_SaveHomeActuContent;
    } else {
	divOuToutMettre.innerHTML = tmp.innerHTML;
    }
}

function hide(id) {
    //    var e = document.getElementById(id);
    //    e.style.display = 'none';
}
