var menuSlider=function(){
	var m,e,g,s,q,i; e=[]; q=8; i=8;
	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.title; 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.height='5px'; 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)}
}};}();

var slider=function(){
	var array=[]; var speed=5; var timer=10;
	return{
		init:function(t,c){
			var s,ds,l,i,y;
			s=document.getElementById(t); //récupère les éléments en fonction de leur id
			ds=s.getElementsByTagName('div'); //met les éléments qui ont un id et qui sont des div
			l=ds.length; //récupère le nombre de résultats
			i=y=0;
			
			for(i=0;i<l;i++){ //tant qu'il y a des résultats
				var d,did; d=ds[i]; did=d.id;
				if(did.indexOf("header")!=-1){ //si le div a pour id header
					y++; 
					d.onclick=new Function("slider.process(this)"); //on lui attribue la propriété cliquable
				}
				else if(did.indexOf("content")!=-1){ //sinon si la div a pour id content
					array.push(did.replace('content-','')); 
					d.maxh=d.offsetHeight;
					//if(c!=y){
						d.style.height='0px'; //on met une hauteur de 0px
						d.style.display='none'//on masque le block
						d.onclick=new Function("slider.process(this)"); //on lui attribue la propriété cliquable

					//}
					//else{d.style.display='block'}//sinon on affiche le block
				} 
			}
		},
		process:function(d){
			var cl,i; 
			cl=array.length; 
			i=0;
			
			for(i;i<cl;i++){
				var s,h,c,cd;
				s=array[i]; 
				h=document.getElementById('header-'+s);
				c='content-'+s; 
				cd=document.getElementById(c); 
				clearInterval(cd.timer);
				if(h==d&&cd.style.display=='none'){
					cd.style.display='block'; 
					this.islide(c,1);
				}
				else if(cd.style.display=='block'){this.islide(c,-1)}
			}
		},
		islide:function(i,d){
			var c,m; 
			c=document.getElementById(i); 
			m=c.maxh; 
			c.direction=d; 
			c.timer=setInterval("slider.slide('"+i +"')",timer)
		},
		slide:function(i){
			var c,m,h,dist; 
			c=document.getElementById(i); 
			m=c.maxh; 
			h=c.offsetHeight;
			dist=(c.direction==1)?Math.round((m-h)/speed):Math.round(h/speed);
			if(dist<=1){dist=1}
			c.style.height=h+(dist*c.direction)+'px'; 
			c.style.opacity=h/c.maxh; 
			c.style.filter='alpha(opacity='+(h*100/c.maxh)+')';
			if(h<2&&c.direction!=1){
				c.style.display='none'; clearInterval(c.timer);
			}
			else if(h>(m-2)&&c.direction==1){clearInterval(c.timer)}
		}
};}();