﻿//幸运者
var scrollerLK = new jsScroller(document.getElementById("ContainerLK"), 242, 70);
var scrollbarLK = new jsScrollbar(document.getElementById("Scrollbar-ContainerLK"), scrollerLK, true);
var scrollTweenLK = new jsScrollerTween(scrollbarLK, true);
scrollTweenLK.stepDelay = 30;
scrollbarLK._moveContentOld = scrollbarLK._moveContent;
scrollbarLK._moveContent = function() {
    this._moveContentOld(); var percent = this._y / (this._trackHeight - this._handleHeight);
    document.getElementById("LineLK").style.top = Math.round((this._handleHeight - 25) * percent) + "px";
};
//参与者
var scrollerCY = new jsScroller(document.getElementById("ContainerCY"), 242, 126);
var scrollbarCY = new jsScrollbar(document.getElementById("Scrollbar-ContainerCY"), scrollerCY, true);
var scrollTweenCY = new jsScrollerTween(scrollbarCY, true);
scrollTweenCY.stepDelay = 30;
scrollbarCY._moveContentOld = scrollbarCY._moveContent;
scrollbarCY._moveContent = function() {
    this._moveContentOld(); var percent = this._y / (this._trackHeight - this._handleHeight);
    document.getElementById("LineCY").style.top = Math.round((this._handleHeight - 25) * percent) + "px";
};
$(document).ready(function() {
    $(".name").click(function() { $(this).toggleClass("select"); });
    $(".wrapper a").click(function() { var wBoxPic = $('#ccc').wBox({ drag: false, noTitle: true, show: true, html: ActPicHtml($(this).attr("lang")) }); });
});
