﻿var _c = _h = 0;
$(function() {
    $('#switchPannel > dl').mouseover(function() {
        var i = $(this).attr('alt') - 1;
        if (_c == i) return;
        clearInterval(_h);
        _c = i;
        play();
        change(i);
    }).click(function() {
        var linkUrl = $(this).find("a")[0].href;
        window.open(linkUrl);
    })
    $("#switchPic img").hover(function() { clearInterval(_h) }, function() { play() });
    play();
})
function play() {
    _h = setInterval("auto()", 3000);
}
function change(i) {
    $('#switchPannel > dl').removeClass("selected1").addClass('selected2').eq(i).removeClass("selected2").addClass('selected1').blur();
    $("#switchPic img").hide().eq(i).fadeIn('slow');
}
function auto() {
    _c = _c > 2 ? 0 : _c + 1;
    change(_c);
}

