<!--
var cellName=null;

//pre-load images if "Image" is defined

if(document.images) {
    var upper_IMG_01_off = new Image();
    upper_IMG_01_off.src = "./images/accueil.gif";
    var upper_IMG_01_on  = new Image();
    upper_IMG_01_on.src  = "./images/accueil_up.gif";
    
    
	var upper_IMG_02_off = new Image();
    upper_IMG_02_off.src = "./images/services.gif";
    var upper_IMG_02_on  = new Image();
    upper_IMG_02_on.src  = "./images/services_up.gif";
    
	var upper_IMG_03_off = new Image();
    upper_IMG_03_off.src = "./images/solutions.gif";
    var upper_IMG_03_on  = new Image();
    upper_IMG_03_on.src  = "./images/solutions_up.gif";
    
	var upper_IMG_04_off = new Image();
    upper_IMG_04_off.src = "./images/ressources.gif";
    var upper_IMG_04_on  = new Image();
    upper_IMG_04_on.src  = "./images/ressources_up.gif";
    
	var upper_IMG_05_off = new Image();
    upper_IMG_05_off.src = "./images/clients.gif";
    var upper_IMG_05_on  = new Image();
    upper_IMG_05_on.src  = "./images/clients_up.gif";
    
	var upper_IMG_06_off = new Image();
    upper_IMG_06_off.src = "./images/partenaires.gif";
    var upper_IMG_06_on  = new Image();
    upper_IMG_06_on.src  = "./images/partenaires_up.gif";


	var upper_IMG_07_off = new Image();
    upper_IMG_07_off.src = "./images/apropos.gif";
    var upper_IMG_07_on  = new Image();
    upper_IMG_07_on.src  = "./images/apropos_up.gif";   
   }

function over(cellName) {
    if(document.images) {
        if(cellName == 'upper1') {
           document[cellName].src = upper_IMG_01_on.src;
        }

        if(cellName == 'upper2') {
           document[cellName].src = upper_IMG_02_on.src;
        }

		if(cellName == 'upper3') {
           document[cellName].src = upper_IMG_03_on.src;
        }
        
 		if(cellName == 'upper4') {
           document[cellName].src = upper_IMG_04_on.src;
        }

 		if(cellName == 'upper5') {
           document[cellName].src = upper_IMG_05_on.src;
        }
        
 		if(cellName == 'upper6') {
           document[cellName].src = upper_IMG_06_on.src;
        }
 		if(cellName == 'upper7') {
           document[cellName].src = upper_IMG_07_on.src;
        }

	}
}

function out(cellName) {
     if(document.images) {
        if(cellName == 'upper1') {
           document[cellName].src = upper_IMG_01_off.src;
        }
        if(cellName == 'upper2') {
           document[cellName].src = upper_IMG_02_off.src;
        }
        if(cellName == 'upper3') {
           document[cellName].src = upper_IMG_03_off.src;
        }
        if(cellName == 'upper4') {
           document[cellName].src = upper_IMG_04_off.src;
        }
 		if(cellName == 'upper5') {
           document[cellName].src = upper_IMG_05_off.src;
        }
 		if(cellName == 'upper6') {
           document[cellName].src = upper_IMG_06_off.src;
        }
 		if(cellName == 'upper7') {
           document[cellName].src = upper_IMG_07_off.src;
        }

        
     }
 }
//-->

