/**
* Fichier appelant la fonction principale
* initialisant les objets
*/
function main(){

	// Création de l'agent
	new clAgent("conseiller", 67, 289);
	/*var agent = new clAgent("conseiller", 57, 285);
	if(agent.layer.anItem) {
		agent.layer.anItem.onclick = function() {
			if(agent.isOpen) {
				agent.fermerAgent();
			} else {
				agent.agrandirAgent();
			}
		};
	}*/

}

window.onload = main;