
var current_tab = 'artist_bio_tab';
var current_box = 'bio';

function gh_show(new_tab){
    document.getElementById(current_tab).className = 'artist_bio_tab';
    document.getElementById('artist_'+new_tab+'_tab').className = 'artist_bio_tab_selected';
    
    document.getElementById('artist_'+current_box).style.display = 'none';
    document.getElementById('artist_'+new_tab).style.display = 'block';
    
    current_tab = 'artist_'+new_tab+'_tab';
    current_box = new_tab;
}

function show_admin(new_tab){
    document.getElementById(current_tab).className = 'artist_bio_tab';
    document.getElementById('artist_'+new_tab+'_tab').className = 'artist_bio_tab_selected';
    
    document.getElementById('artist_'+current_box+'_admin').style.display = 'none';
    document.getElementById('artist_'+new_tab+'_admin').style.display = 'block';
    
    current_tab = 'artist_'+new_tab+'_tab';
    current_box = new_tab;
}

function show_store_about(){
    document.getElementById('store_artist_about').style.display = 'block';
    document.getElementById('store_artist_more').style.display = 'none';	
}
