//FONCTIONS DE ROLLOVER :
var taille=6; // Nombre d'elements du menu

out = new Image_array();
on = new Image_array();

out[1].src = "/images/general/support_inter_off.gif";
out[2].src = "/images/general/doc_inter_off.gif";
out[3].src = "/images/general/ref_inter_off.gif";
out[4].src = "/images/general/main_inter_off.gif";
out[5].src = "/images/general/how_inter_off.gif";
out[6].src = "/images/general/about_inter_off.gif";

on[1].src = "/images/general/support_inter_on.gif";
on[2].src = "/images/general/doc_inter_on.gif";
on[3].src = "/images/general/ref_inter_on.gif";
on[4].src = "/images/general/main_inter_on.gif";
on[5].src = "/images/general/how_inter_on.gif";
on[6].src = "/images/general/about_inter_on.gif";

function omover(num)
{
	imageName='menu'+num;
	document[imageName].src = on[num].src;
}
function omout(num)
{
	imageName='menu'+num;
	document[imageName].src = out[num].src;
}

function Image_array()
{ 
        this.length=taille
        for (var i=1;i<=taille;i++)
                this[i]=new Image()
        return this
}

