var tab1;
var tab2;


function show_tab_top(id)
{
   if (id == 'top') {
                   tab1 = 'hit';
                   tab2 = 'favourit';
           } else if (id == 'hit') {
                   tab1 = 'top';
                   tab2 = 'favourit'; 
           } else if (id == 'favourit') {
                   tab1 = 'top';
                   tab2 = 'hit';
           } 

           // hide stavajuceho tab2
           document.getElementById(tab2).style.display = 'none';
           document.getElementById('li_' + tab2).style.backgroundColor = '#CCCCCC';
           document.getElementById('li_' + tab2).style.zIndex=1;
           document.getElementById('li_' + tab2).style.color = '#000000';
           // hide stavajuceho tab1
           document.getElementById(tab1).style.display = 'none';
           document.getElementById('li_' + tab1).style.backgroundColor = '#CCCCCC';
           document.getElementById('li_' + tab1).style.zIndex=1;
           document.getElementById('li_' + tab1).style.color = '#000000';
           //zobrazeni noveho tab
           document.getElementById(id).style.display = 'block';
           document.getElementById('li_' + id).style.backgroundColor = '#FFFFFF';
           document.getElementById('li_' + id).style.zIndex=3;
           document.getElementById('li_' + id).style.color = '#FF6600';

           tab = id;
}