function init(page) {
   actcds = new Image();
   inactcds = new Image();
   actich = new Image();
   inactich = new Image();
   
   if (page=="index") {
        actcds.src = "images/cds.04.jpg";
        inactcds.src = "images/cds.03.jpg";
        actich.src = "images/PhilippCross.jpg";
        inactich.src = "images/PhilippRL.gif";
   }
}

function initII(page) {
   if (page=="index") {
        document.cds.src=inactcds.src;
        document.ich.src=inactich.src;
   }
}


function over(pic) {
          if (pic=="cds") document.cds.src=actcds.src;
          if (pic=="ich") document.ich.src=actich.src;
}


function out(pic) {
          if (pic=="cds") document.cds.src=inactcds.src;
          if (pic=="ich") document.ich.src=inactich.src;
}

