<!--
var style;

function setMenu(id)
{
obj = document.getElementById(id);
obj.className = 'menu-h';
return;
}


function swlang(obj,where)
{

  obj.className='menu-mclick';
  if(where==1)
    location.href = "../fr/index.shtml";
  else if(where==2)
    location.href = "../en/index.shtml";

return;
}

function mc(obj,what,where)
{

if (what==1)
 {
  obj.className='menu-mclick';
  if(where==1)
    location.href = "index.shtml";
  else if(where==2)
    location.href = "history.shtml";
  else if(where==3)
    location.href = "/photoalbums/";
  else if(where==4)
    location.href = "contact.shtml";
  else if(where==5)
    location.href = "mission.shtml";
  else if(where==6)
    location.href = "sponsors.shtml";

 }
else if (what==2)
 {
  style = obj.className;
  obj.className='menu-mover';
 }
else if (what==3)
 obj.className=style;
return;
}
//-->
