```javascript// 创建一个数组Switcher

var Switcher = [];

// 为Switcher数组添加元素

Switcher[1] = {

'title': '整治网购“缺斤短两”乱象',

'stitle': '',

'link': 'http://views.ce.cn/view/ent/202409/10/t20240910_39133623.shtml'

};

// 为Switcher数组添加元素

Switcher[2] = {

'title': '“东北雨姐”造假宣传:网红应珍惜粉丝的信任',

'stitle': '',

'link': 'http://views.ce.cn/view/ent/202409/09/t20240909_39132013.shtml'

};

// 为Switcher数组添加元素

Switcher[3] = {

'title': '理性看待成都车展',

'stitle': '',

'link': 'http://views.ce.cn/view/ent/202409/06/t20240906_39130027.shtml'

};

// 为Switcher数组添加元素

Switcher[4] = {

'title': '在家摆点桌椅就营业?“小饭桌”需要纳入监管',

'stitle': '',

'link': ''

};

```

```javascript// 初始化 Switcher 对象

Switcher[4] = {

'link': 'http://views.ce.cn/view/ent/202409/05/t20240905_39128714.shtml'

};

Switcher[5] = {

'title': '合规是必修课 发展是必答题',

'stitle': '',

'link': 'http://views.ce.cn/view/ent/202409/04/t20240904_39127343.shtml'

};

// 定义刷新图片切换的时间间隔(毫秒)

var refreshSwitchTimer = null;

// 调用 switchPic 函数并传入当前屏幕的参数

switchPic(CurScreen);

// 在 3 秒后执行 reSwitchPic 函数以刷新图片切换

refreshSwitchTimer = setTimeout('reSwitchPic();', 3000);

```