Cacher("cimbomparis");
Cacher("besiktascarsi");
Cacher("besiktas_carsi_1903");

function Derouler(id, hauteur){
	
	var objet = document.getElementById(id);
	
	if(objet.style.display == "none" || !objet.style.display){
		
		objet.style.display = "block";
		objet.style.overflow = "hidden"; 
       
        var hFinal      =     hauteur;
        var hActuel     =     0;	 	
       
        var timer;
        var fct =        function ()
        {
                hActuel  +=       10;
				
                objet.style.height     =	 hActuel      +     'px';
				
                if( hActuel > hFinal)
                {
                        clearInterval(timer);
                        objet.style.overflow    =   'inherit';
                }
        };
        fct();
		
        
		timer = setInterval(fct,1); 
		
	}
	
	if(id=="cimbomparis"){
		Cacher("besiktascarsi");
		Cacher("besiktas_carsi_1903");
		
		var objet_tab = document.getElementById("tab_cimbomparis");
		objet_tab.style.backgroundColor = "#eeeeee";
		objet_tab.style.fontWeight = "bold";
		objet_tab.style.overflow    =   'inherit';
		
		var objet_tab2 = document.getElementById("tab_besiktascarsi");
		objet_tab2.style.backgroundColor = "white";
		objet_tab2.style.fontWeight = "";
		objet_tab2.style.overflow    =   'inherit';
		
		var objet_tab3 = document.getElementById("tab_besiktas_carsi_1903");
		objet_tab3.style.backgroundColor = "white";
		objet_tab3.style.fontWeight = "";
		objet_tab3.style.overflow    =   'inherit';
		
		
	}else if(id=="besiktascarsi"){
		Cacher("cimbomparis");
		Cacher("besiktas_carsi_1903");
		
		var objet_tab1 = document.getElementById("tab_cimbomparis");
		objet_tab1.style.backgroundColor = "white";
		objet_tab1.style.fontWeight = "";
		objet_tab1.style.overflow    =   'inherit';
		
		var objet_tab = document.getElementById("tab_besiktascarsi");
		objet_tab.style.backgroundColor = "#eeeeee";
		objet_tab.style.fontWeight = "bold";
		objet_tab.style.overflow    =   'inherit';
		
		var objet_tab3 = document.getElementById("tab_besiktas_carsi_1903");
		objet_tab3.style.backgroundColor = "white";
		objet_tab3.style.fontWeight = "";
		objet_tab3.style.overflow    =   'inherit';
		
		
		
	}else if(id=="besiktas_carsi_1903"){
		Cacher("cimbomparis");
		Cacher("besiktascarsi");
		
		var objet_tab1 = document.getElementById("tab_cimbomparis");
		objet_tab1.style.backgroundColor = "white";
		objet_tab1.style.fontWeight = "";
		objet_tab1.style.overflow    =   'inherit';
		
		var objet_tab3 = document.getElementById("tab_besiktascarsi");
		objet_tab3.style.backgroundColor = "white";
		objet_tab3.style.fontWeight = "";
		objet_tab3.style.overflow    =   'inherit';
		
		var objet_tab = document.getElementById("tab_besiktas_carsi_1903");
		objet_tab.style.backgroundColor = "#eeeeee";
		objet_tab.style.fontWeight = "bold";
		objet_tab.style.overflow    =   'inherit';
	}
}

function Montrer(id)
{         
        var objet = document.getElementById(id);
		
		objet.style.display     =   "block";
}

function Cacher(id)
{     
        var objet = document.getElementById(id);
		
		objet.style.display     =   "none";
}

function getCook(nom) {
        deb = document.cookie.indexOf(nom + "=")
        if (deb >= 0) {
            deb += nom.length + 1
            fin = document.cookie.indexOf(";",deb)
            if (fin < 0) fin = document.cookie.length
            return unescape(document.cookie.substring(deb,fin))
            }
        return ""
        }


