/*
EASY TABS 1.2 Produced and Copyright by Koller Juergen
www.kollermedia.at | www.austria-media.at
Need Help? http:/www.kollermedia.at/archive/2007/07/10/easy-tabs-12-now-with-autochange
You can use this Script for private and commercial Projects, but just leave the two credit lines, thank you.
*/

//EASY TABS 1.2 - MENU SETTINGS
//Set the id names of your tablink (without a number at the end)
var simpletablink_idname = new Array("simpletab_link")
//Set the id name of your tabcontentarea (without a number at the end)
var simpletabcontent_idname = new Array("simple_tabcontent")
//Set the number of your tabs
var simpletabcount = new Array("3")
//Set the Tab wich should load at start (In this Example:Tab 2 visible on load)
var simpleloadtabs = new Array("1")
//Set the Number of the Menu which should autochange (if you dont't want to have a change menu set it to 0)
var autochangemenu_simple = 1;
//the speed in seconds when the tabs should change
var simple_changespeed = 2;
//should the autochange stop if the user hover over a tab from the autochangemenu_simple? 0=no 1=yes
var simple_stoponhover = 0;
//END MENU SETTINGS

/*Swich EasyTabs Functions - no need to edit something here*/
function switchtabs(menunr, active) {
    if (menunr == autochangemenu_simple){
        simple_currenttab=active;
    }
    if ((menunr == autochangemenu_simple)&&(simple_stoponhover==1)) {
        stop_autochange()
        } else if ((menunr == autochangemenu_simple)&&(simple_stoponhover==0))  {
        simple_counter=0;
    }
    menunr = menunr-1;
    for (i=1; i <= simpletabcount[menunr]; i++){
        document.getElementById(simpletablink_idname[menunr]+i).className='simpletab'+i;
        document.getElementById(simpletabcontent_idname[menunr]+i).style.display = 'none';
    }
    document.getElementById(simpletablink_idname[menunr]+active).className='simpletab'+active+' tabactive';
    document.getElementById(simpletabcontent_idname[menunr]+active).style.display = 'block';
}
simple_counter=0;
var simple_currenttab=simpleloadtabs[autochangemenu_simple-1];
