    function showZakladka( id, ile )
    {
        for( i=1; i<=ile; i++ )
        {
            old = document.getElementById( 'ge'+i );
            old.style.display = 'none';
            oldMenu = document.getElementById( 'ged'+i );
            oldMenu.className = '';
        }
        current = document.getElementById( 'ge'+id );
        current.style.display = 'block';

        currentMenu = document.getElementById( 'ged'+id );
        currentMenu.className = 'selected_tab';
    }
               
    
    function promotion(){
    	
    	var color=document.getElementById("promotion_top").style.color;
//alert(color);
    	
    	if( color=="rgb(255,0,0)" || color=="rgb(255, 0, 0)" ){

    		document.getElementById("promotion_top").style.color="rgb(255,229,69)";
    	}
    	else{
    		
    		document.getElementById("promotion_top").style.color="rgb(255,0,0)";
    	}
    	setTimeout("promotion();",1000);
    }
    setTimeout("promotion();",1000);
