// JavaScript Document
$(function() {
var len = $("#slider-triggers > li").length;
var index = 0;
$("#slider-triggers li").mouseover(function() {
index = $("#slider-triggers li").index(this);
showImg(index);
});
$('#main_sliderPic').hover(function() {
if (MyTime) {
clearInterval(MyTime);
}
}, function() {
MyTime = setInterval(function() {
showImg(index)
index++;
if (index == len) { index = 0; }
}, 3000);
});
var MyTime = setInterval(function() {
showImg(index)
index++;
if (index == len) { index = 0; }
}, 3000);
})
function showImg(i) {
$("#slider-list").stop(true, false).animate({ top: -183 * i });
$("#slider-triggers li")
.eq(i).addClass("on")
.siblings().removeClass("on");
}
