// JavaScript Document


function show(){
document.getElementById('allmenu').style.display = 'block';
document.getElementById('menuclose').style.display = 'block';
document.getElementById('menumore').style.display = 'none';
document.getElementById('menuleft').innerHTML="<img src='images/menubgleft2.jpg' width='6' height='28' />";
}

function hide(){
document.getElementById('allmenu').style.display = 'none';
document.getElementById('menuclose').style.display = 'none';
document.getElementById('menumore').style.display = 'block';
document.getElementById('menuleft').innerHTML="<img src='images/menubgleft.jpg' width='6' height='28' />";
}

function gamescore(high,today,week,month){

document.getElementById('high').className = high;
document.getElementById('today').className = today;
document.getElementById('week').className = week;
document.getElementById('month').className = month;


if(high == 'show'){
document.getElementById('highL').className = 'tabActive contB';
document.getElementById('todayL').className = 'tabNA contB marginL5';
document.getElementById('weekL').className = 'tabNA contB marginL5';
document.getElementById('monthL').className = 'tabNA contB marginL5';
}

if(today == 'show'){
document.getElementById('highL').className = 'tabNA contB';
document.getElementById('todayL').className = 'tabActive contB marginL5';
document.getElementById('weekL').className = 'tabNA contB marginL5';
document.getElementById('monthL').className = 'tabNA contB marginL5';
}

if(week == 'show'){
document.getElementById('highL').className = 'tabNA contB';
document.getElementById('todayL').className = 'tabNA contB marginL5';
document.getElementById('weekL').className = 'tabActive contB marginL5';
document.getElementById('monthL').className = 'tabNA contB marginL5';
}

if(month == 'show'){
document.getElementById('highL').className = 'tabNA contB';
document.getElementById('todayL').className = 'tabNA contB marginL5';
document.getElementById('weekL').className = 'tabNA contB marginL5';
document.getElementById('monthL').className = 'tabActive contB marginL5';
}

}


//Profile tabs
function profile(profile,msg,chat,friend,group){
document.getElementById('profile').className = profile;
document.getElementById('msg').className = msg;
document.getElementById('chat').className = chat;
document.getElementById('friend').className = friend;
document.getElementById('group').className = group;

}