// SWAP IMAGES
	var forfaitexpressOv = new Image(); forfaitexpressOv.src = "http://www.esgmedia.com/images/forfait-express-ov.gif";
	var forfaitexpress = new Image(); forfaitexpress.src = "http://www.esgmedia.com/images/forfait-express.gif";
	
	var forfaitgestionOv = new Image(); forfaitgestionOv.src = "http://www.esgmedia.com/images/forfait-gestion-ov.gif";
	var forfaitgestion = new Image(); forfaitgestion.src = "http://www.esgmedia.com/images/forfait-gestion.gif";
	
	var bottomrealisationsOv = new Image(); bottomrealisationsOv.src = "http://www.esgmedia.com/images/bottom-realisations-ov.gif";
	var bottomrealisations = new Image(); bottomrealisations.src = "http://www.esgmedia.com/images/bottom-realisations.gif";

	var bottomforfaitsOv = new Image(); bottomforfaitsOv.src = "http://www.esgmedia.com/images/bottom-forfaits-ov.gif";
	var bottomforfaits = new Image(); bottomforfaits.src = "http://www.esgmedia.com/images/bottom-forfaits.gif";

	var bottomcontactOv = new Image(); bottomcontactOv.src = "http://www.esgmedia.com/images/bottom-contact-ov.gif";
	var bottomcontact = new Image(); bottomcontact.src = "http://www.esgmedia.com/images/bottom-contact.gif";
	
	var bottomboxmoteursOv = new Image(); bottomboxmoteursOv.src = "http://www.esgmedia.com/images/bottom-box-moteurs-ov.gif";
	var bottomboxmoteurs = new Image(); bottomboxmoteurs.src = "http://www.esgmedia.com/images/bottom-box-moteurs.gif";

	var bottomboxnavigateursOv = new Image(); bottomboxnavigateursOv.src = "http://www.esgmedia.com/images/bottom-box-navigateurs-ov.gif";
	var bottomboxnavigateurs = new Image(); bottomboxnavigateurs.src = "http://www.esgmedia.com/images/bottom-box-navigateurs.gif";

	var bottomboxprogrammationOv = new Image(); bottomboxprogrammationOv.src = "http://www.esgmedia.com/images/bottom-box-programmation-ov.gif";
	var bottomboxprogrammation = new Image(); bottomboxprogrammation.src = "http://www.esgmedia.com/images/bottom-box-programmation.gif";

	function rollover(paramImgID)
	{
		window.document.getElementById(paramImgID).src = eval(paramImgID + "Ov.src");
	}
	function rollout(paramImgID)
	{
		window.document.getElementById(paramImgID).src = eval(paramImgID + ".src");
	}

// Random banner

bannerpics=new Array; 
bannerurls=new Array;

bannerpics[1]="http://www.esgmedia.com/images/creation-web-01.gif"; 
bannerurls[1]="http://www.esgmedia.com/Realisations_Web/";

bannerpics[2]="http://www.esgmedia.com/images/creation-web-02.gif"; 
bannerurls[2]="http://www.esgmedia.com/Realisations_Web/";

bannerpics[3]="http://www.esgmedia.com/images/creation-web-03.gif"; 
bannerurls[3]="http://www.esgmedia.com/Realisations_Web/";

bannerpics[4]="http://www.esgmedia.com/images/creation-web-04.gif"; 
bannerurls[4]="http://www.esgmedia.com/Realisations_Web/";

bannerpics[5]="http://www.esgmedia.com/images/creation-web-05.gif"; 
bannerurls[5]="http://www.esgmedia.com/Realisations_Web/";

bannerpics[6]="http://www.esgmedia.com/images/creation-web-06.gif"; 
bannerurls[6]="http://www.esgmedia.com/Realisations_Web/";

bannerpics[7]="http://www.esgmedia.com/images/creation-web-07.gif"; 
bannerurls[7]="http://www.esgmedia.com/Realisations_Web/";

bannerpics[8]="http://www.esgmedia.com/images/creation-web-08.gif"; 
bannerurls[8]="http://www.esgmedia.com/Realisations_Web/";

function ShowBanner() {

num = Math.random();
num = 1 + ( num * ((bannerpics.length - 1)-1));
num = Math.round(num);

document.write("<a href=\"" + bannerurls[num] + "\" title=\"Cr&eacute;ation de sites Web\"><img src=\"" + bannerpics[num] + "\" width=\"250\" height=\"220\" alt=\"Cr&eacute;ation de sites Web\" /></a>");

}