/* 
 * author£ºzx
 * time£º2015.8.7
 **/
function initSwipers(options) {
    var id = options.id;
    new Swiper('#' + id, {
        spaceBetween: options.spaceBetween ? options.spaceBetween : 5,
        pagination: '#' + id + ' .swiper-pagination',
        paginationClickable: true,
        //paginationBulletRender: function (index, className) {
        //    return '<span class="' + className + '">' + (index + 1) + '</span>';
        //},
        autoplay: options.autoplay ? options.autoplay : true,
        loop: true
    });
}