/*
	INITIALISATION DE LA PAGE
*/

function initpage()
{
	ChangementImages()
	/* CREATION DES MODAL BOX */
    new Control.Tabs('lemenu');
    /*
    new Control.Modal('carte_montlucon',{position: 'mouse', offsetTop: 20,offsetLeft: 20, contents: 'Formations à Montluçon : <br><img src="./images/petit_montlucon.jpg" ALT="IUT Montlucon"><ul><li>DUT GEII</li><li>DUT GMP</li><li>DUT GTE</li><li>DUT TC</li><li>DUT GLT</li>		</ul>'    });
    new Control.Modal('carte_moulins',{position: 'mouse', offsetTop: 20,offsetLeft: 20, contents: 'Formation à Moulins : <br><img src="./images/petit_moulins.jpg" ALT="IUT Moulins"><ul><li>DUT TC</li></ul>'    });
    new Control.Modal('carte_vichy',{position: 'mouse', offsetTop: 20,offsetLeft: 20, contents: 'Formation à Vichy : <br><img src="./images/petit_vichy.jpg" ALT="IUT Vichy"><ul><li>DUT SRC</li></ul>'    });
    new Control.Modal('carte_clermont',{position: 'mouse', offsetTop: 20,offsetLeft: 20, contents: 'Formations à Clermont : <br><img src="./images/petit_clermont.jpg" ALT="IUT Clermont"><ul><li>DUT ABB</li><li>DUT Dietetique</li><li>DUT GEA</li><li>...</li>	</ul>'    });
    new Control.Modal('carte_aurillac',{position: 'mouse', offsetTop: 20,offsetLeft: 20, contents: 'Formations à Aurillac : <br><img src="./images/petit_aurillac.jpg" ALT="IUT Aurillac"><ul><li>DUT Agronomie</li><li>DUT Environnement</li><li>DUT Bio-Informatique</li>	</ul>'    });
    new Control.Modal('carte_lepuy',{position: 'mouse', offsetTop: 20,offsetLeft: 20, contents: 'Formations au Puy : <br><img src="./images/petit_lepuy.jpg" ALT="IUT Le Puy"><ul><li>DUT Réseaux</li></ul>'    });
	*/
	new Control.Modal('carte_montlucon',{position: 'mouse', offsetTop: 20,offsetLeft: 20, contents: '<img src="./images/petit_montlucon.jpg" 	ALT="IUT Montlucon">	<br>Montluçon'});
    new Control.Modal('carte_moulins',{position: 'mouse', offsetTop: 20,offsetLeft: 20, contents: '<img src="./images/petit_moulins.jpg" 		ALT="IUT Moulins">		<br>Moulins'});
    new Control.Modal('carte_vichy',{position: 'mouse', offsetTop: 20,offsetLeft: 20, contents: '<img src="./images/petit_vichy.jpg" 			ALT="IUT Vichy">		<br>Vichy'});
    new Control.Modal('carte_clermont',{position: 'mouse', offsetTop: 20,offsetLeft: 20, contents: '<img src="./images/petit_clermont.jpg" 		ALT="IUT Clermont">		<br>Clermont'});
    new Control.Modal('carte_aurillac',{position: 'mouse', offsetTop: 20,offsetLeft: 20, contents: '<img src="./images/petit_aurillac.jpg" 		ALT="IUT Aurillac">		<br>Aurillac'});
    new Control.Modal('carte_lepuy',{position: 'mouse', offsetTop: 20,offsetLeft: 20, contents: '<img src="./images/petit_lepuy.jpg" 			ALT="IUT Le Puy">		<br>Le Puy'});
}


/*
A EFFACER
		function changeAffichage(iddubloc){
			
			document.getElementById('fo_accueil').style.display="none";
			document.getElementById('fo_global').style.display="none";
			document.getElementById('fo_sites').style.display="none";
			document.getElementById('fo_candidatures').style.display="none";
			document.getElementById('fo_iutclermont').style.display="none";
			document.getElementById('fo_iutmontlucon').style.display="none";
			document.getElementById('fo_iutmoulins').style.display="none";
			document.getElementById('fo_iutvichy').style.display="none";
			document.getElementById('fo_iutlepuy').style.display="none";
			document.getElementById('fo_iutaurillac').style.display="none";
			
			document.getElementById(iddubloc).style.display="inline";
			var children = document.getElementById('formation').childNodes;
			for (i=0; i<children.length; i++)
			{
				children[i].style.display="none";
			} 		
		}
*/


/*
	GESTION DU MENU IMBRIQUE DES FORMATIONS
*/

	var mutex=1;
	
	function aficheOuMasqueFils(li) {
		if (mutex==1)
		{
			mutex=0;
			setTimeout("mutex=1;",100);
			//var node = li.firstChild;
			var node = li;
			// parcours tous les fils pour trouver l'element UL
			while ( node.nodeName != "UL" )
				node = node.nextSibling;
			// affiche le menu
			if ( node.style.display == 'none' || node.style.display == '' ) {
				node.style.display = 'block';
			}
			// cache le menu
			else {
				node.style.display = 'none';
			}
		}
	}


/*
	ROTATION DES IMAGES DU LOGO
*/
		var NumeroImage = 5;
		var TableauImages = new Array();
		var m ="";
		document.image_chargee = new Array();
		for (n=0;n<NumeroImage;n++)
		{
			TableauImages[n] = "url(images/logo"+(n+1)+".jpg)";
			document.image_chargee[n] = new Image;
			document.image_chargee[n].src =="images/logo"+(n+1)+".jpg";
		}
		var Images = window.setInterval("ChangementImages()",5000);
		
		function ChangementImages()
		{
			if(TableauImages.length > 0)
			{
				var x = Math.floor(Math.random()*TableauImages.length);
				document.getElementById('logo').style.backgroundImage = TableauImages.splice(x,1);
			}
			else
			{
				for (n=0;n<NumeroImage;n++)
				{
					TableauImages[n] = "url(images/logo"+(n+1)+".jpg)";
				}
			}
		}
		
		

