/*-----------------------------------------------------------------------------------------------*/
//
// Copyright (c) 2008 Agence Clark (http://www.agence-clark.com)
//
/*-----------------------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------------------------*/
// Init Page
/*-----------------------------------------------------------------------------------------------*/
Event.observe(window, 'load', InitPage, false);
function InitPage(){
	RollOverImage();
	centreUL('#ul_pied');
	$$('input.calendrier').each(function(e){
		Event.observe(e,'focus',function(){
			displayCalendar(this,'dd/mm/yyyy',this,false,false);
		});
	});
	if($('a_envoyer_ami')){
		Event.observe('a_envoyer_ami','click',function(){
			OpenClose('a_envoyer_ami','envoi_ami');
		});
	}
}

/*-----------------------------------------------------------------------------------------------*/
// Fonctions
/*-----------------------------------------------------------------------------------------------*/
var centreUL = function(ul){
	if($$(ul)[0]){
		var li = $$(ul+' li');
		var longueur = 0;
		li.each( function(e,i){
			longueur+=e.offsetWidth;
		});
		$$(ul)[0].setStyle({margin:'0 auto 0 auto', width:longueur+'px'});
	}
}
var afficheAmi = function(){
	OpenClose('a_envoyer_ami','envoi_ami')	
	if($('confirmation_envoi_ami')){
		$('confirmation_envoi_ami').remove();
	}
	$('frm_envoi_ami').reset();
};