/*-----------------------------------------------------------------------
Fichier : accueil.js
		  Fichier javascript gérant les différentes animations présentes
		  sur la page d'accueil du site
-------------------------------------------------------------------------
Auteur : ROTH Damien
Société : VOLTIGEUR Informatique <http://www.voltigeur-informatique.com/>
-------------------------------------------------------------------------
Version : 1.0
Changements :
 - [2006-06-30] Initialisation
 - [2006-09-06] Modification pour lecture automatique des images
-----------------------------------------------------------------------*/

/****
 * Script gérant le slide
***/
a = 0;
// Démarrage du slide
function StartAnim()
{
	document.write('<img src="images/accueil1.jpg" alt="Slide" id="defil" class="styphoto" />');
	defilimg()
}

// Changement de l'image
function defilimg()
{
	if (a == imgPath.length)
	{
		a = 0;
	}

	document.getElementById('defil').src = imgPath[a];
	tempo3 = setTimeout("defilimg()",2000);
	a++;
}

/****
 * Script gérant le tableau d'images
***/


/*
images[1] = 'gal1.jpg';
images[2] = 'gal2.jpg';
images[3] = 'gal3.jpg';
images[4] = 'gal4.jpg';
images[5] = 'gal5.jpg';
images[6] = 'gal6.jpg';
images[7] = 'gal7.jpg';
images[8] = 'plan.png';*/

function displayTable()
{
	/*/ Préchargement
	for(var i=1;i<9;i++)
	{
		
	}*/

	var texte = "";
	texte += '<table>';
	texte += '  <col width="100px" span="3" />';
	texte += '  <tr>';
	texte += '	<td><a href="#" onmouseover="changeToImage(1)"><img src="images/galerie/v_' + images[1] + '" width="100" alt="temps" /></a></td>';
	texte += '	<td><a href="#" onmouseover="changeToImage(2)"><img src="images/galerie/v_' + images[2] + '" width="100" alt="temps" /></a></td>';
	texte += '	<td><a href="#" onmouseover="changeToImage(3)"><img src="images/galerie/v_' + images[3] + '" width="100" alt="temps" /></a></td>';
	texte += '  </tr>';
	texte += '  <tr>';
	texte += '	<td><a href="#" onmouseover="changeToImage(4)"><img src="images/galerie/v_' + images[4] + '" width="100" alt="temps" /></a></td>';
	texte += '	<td><img src="images/logo.png" width="100" height="75" alt="Logo" /></td>';
	texte += '	<td><a href="#" onmouseover="changeToImage(5)"><img src="images/galerie/v_' + images[5] + '" width="100" alt="temps" /></a></td>';	texte += '  </tr>';
	texte += '  <tr>';
	texte += '	<td><a href="#" onmouseover="changeToImage(6)"><img src="images/galerie/v_' + images[6] + '" width="100" alt="temps" /></a></td>';
	texte += '	<td><a href="#" onmouseover="changeToImage(7)"><img src="images/galerie/v_' + images[7] + '" width="100" alt="temps" /></a></td>';
	texte += '	<td><a href="#" onmouseover="changeToImage(8)"><img src="images/galerie/v_' + images[8] + '" width="100" alt="temps" /></a></td>';
	texte += '  </tr>';
	texte += '</table>';
	
	document.getElementById("mgal").innerHTML = texte;
}

function changeToImage(num)
{
	var texte = "";
	texte += '<a href="#" onmouseout="displayTable()"><img src="images/galerie/'+ images[num] +'" width="300" alt="temps" class="styphoto" /></a>';
	document.getElementById("mgal").innerHTML = texte;
}

