//  pokerwahn-tour.js



$(document).ready(function() {
   $("ul#pokerwahn-tour-controls").everyTime(5000, 'tab-switcher', switchTabs); 
});

function switchTabs() {
    var next = $("ul#pokerwahn-tour-controls").children("li.active").next("li");
    var current_id = $("ul#pokerwahn-tour-controls").children("li.active").children("a:first").attr("id");
    if(next.children("a:first").attr("id") == "wt-ctrl-5") 
        next = $("ul#pokerwahn-tour-controls").children("li:first");
    var next_id = $(next).children("a:first").attr("id");
    $("ul#pokerwahn-tour-controls").children("li.active").removeClass("active");
    $(next).addClass("active");
    var offset = next_id.split("-").pop() - 1;
    $("div#pokerwahn-tour").css("background-position", "0 "+(offset * -318)+"px");
};

$("div#pokerwahn-tour").mouseover(function() {
    $("ul#pokerwahn-tour-controls").stopTime('tab-switcher');
});

$("div#pokerwahn-tour").mouseout(function() {
    $("ul#pokerwahn-tour-controls").everyTime(5000, 'tab-switcher', switchTabs); 
});

$("a.wt-tab").mouseover(function() {
    var target_id = $(this).attr("id");
    var current = $("ul#pokerwahn-tour-controls").children("li.active");
    var current_id = current.children("a:first").attr("id");
    
    if(target_id != current_id) {
        $(current).removeClass("active");
        $(this).parent().addClass("active");
        $("div#pokerwahn-tour").css("background-position", "0 "+((target_id.split("-").pop() - 1)* -318)+"px");
    }
});