  //JavaScript Simple Image Rollover Code
  //copyright daxassist, 2000-2004
  //visit http://www.daxassist.com for this and other javascripts with full tutorials.

  if(document.images) {
    pics = new Array();
    pics[1] = new Image();
    pics[1].src = "images/contactico.gif";
    pics[2] = new Image();
    pics[2].src = "images/contactico_ovr.gif";

    pics[3] = new Image();
    pics[3].src = "images/cvideo.gif";
    pics[4] = new Image();
    pics[4].src = "images/cvideo_ovr.gif";
  }
    function changer(from,to) {
    if(document.images) {
    document.images[from].src = pics[to].src;
    }
  }