var tab_active='';

function changeRowClass(ele,cls){
	row=document.getElementById(ele);
	row.className=cls;
}

function tab_on(a,b,c){
    //elozo kikapcsolasa
    if(tab_active!='')tab_off(a,b,tab_active);
    //uj bekapcsolasa
    changeRowClass(a+c,'tabon');     
    changeRowClass(b+c,'contenton');
    //ez az aktiv most     
    tab_active=c;
}

function tab_off(a,b,c){
    changeRowClass(a+c,'taboff');     
    changeRowClass(b+c,'contentoff');     
}

function alsomenuset(x){

}
