/*  =================================================================
/*  =Menu
/*  ================================================================*/

var menuSlider=function(){
	var m,e,g,s,q,i; e=[]; q=25; i=1;
	return{
		init:function(j,k){
			m=document.getElementById(j); e=m.getElementsByTagName('li');
			var i,l,w,p; i=0; l=e.length;
			for(i;i<l;i++){
				var c,v; c=e[i]; v=c.value; if(v==1){s=c; w=c.offsetWidth; p=c.offsetLeft}
				c.onmouseover=function(){menuSlider.mo(this)}; c.onmouseout=function(){menuSlider.mo(s)};
			}
			g=document.getElementById(k); g.style.width=w+'px'; g.style.left=p+'px';
		},
		mo:function(d){
			clearInterval(m.tm);
			var el,ew; el=parseInt(d.offsetLeft); ew=parseInt(d.offsetWidth);
			m.tm=setInterval(function(){menuSlider.mv(el,ew)},i);
		},
		mv:function(el,ew){
			var l,w; l=parseInt(g.offsetLeft); w=parseInt(g.offsetWidth);
			if(l!=el||w!=ew){
				if(l!=el){var ld,lr,li; ld=(l>el)?-1:1; lr=Math.abs(el-l); li=(lr<q)?ld*lr:ld*q; g.style.left=(l+li)+'px'}
				if(w!=ew){var wd,wr,wi; wd=(w>ew)?-1:1; wr=Math.abs(ew-w); wi=(wr<q)?wd*wr:wd*q; g.style.width=(w+wi)+'px'}
			}else{clearInterval(m.tm)}
}};}();

document.observe('dom:loaded', function()
{ 	
	if ($('menu'))
		menuSlider.init('menu','slide');
});


/*  =================================================================
/*  =Liens
/*  ================================================================*/

document.observe("dom:loaded", function()
{	
	/* retour en haut de page */
    $$('.back_to_top').each(function(lien) {
		lien.observe("click",function(evt){
			new Effect.ScrollTo('header',{duration:0.8});
			Event.stop(evt);
		});
	});	
	/* masque element */
	$$('.hideOnLoad').each(function(s)
	{               
		s.hide();                           
		s.removeClassName('hideOnLoad');
	});
	
	/* affichage aide slideflow, mentions legales */
	$$('.showHide').each(function(s)
		{ 
			s.observe("mouseover",function(evt){
					Effect.Appear(s.up().next('.more'), { duration:0.4 });
			});
			s.observe("mouseout",function(evt){
					Effect.Fade(s.up().next('.more'), { duration:0.4 });
			});
		
		});
	
	/* popup */
	$$('.blank').each(function(lien)
	{
		lien.observe('click',function(evt)
		{
			window.open(lien.href,"Print", 'scrollbars=yes,toolbar=yes,location=no,directories=no,menubar=yes,resizable=no,status=yes,width=680,height=480,screenX=0,screenY=0,top=20,left=20');
			evt.stop();
		});
	});

});

/*  =================================================================
/*  =Formulaire - Highlight du champ selectionne
/*  ================================================================*/

document.observe('dom:loaded',function()
{
	$$('.form').each(function(o)
	{
		new highLightForm(o);
	});
});

var highLightForm = Class.create(
{
	initialize:function(elt)
	{
		this.elt = $(elt);
		this.fields = this.elt.select('input', 'select', 'textarea');
		this.fields.invoke('observe','focus',this.highLight.bindAsEventListener(this));
		this.fields.invoke('observe','blur',this.noLight.bindAsEventListener(this));
	},
	highLight:function(evt)
	{
		field = Event.element(evt);	
		field.addClassName('selected');
	},
	noLight:function(evt)
	{
		field = Event.element(evt);	
		field.removeClassName('selected');
	}
});