```javascriptvar Switcher = [

{

title: "理顺政企关系需要企业家发出声音",

stitle: "",

link: "http://views.ce.cn/view/ent/201308/14/t20130814_24659610.shtml"

},

{

title: "惩罚价格垄断不能“温柔一刀”",

stitle: "",

link: "http://views.ce.cn/view/ent/201308/14/t20130814_24659580.shtml"

},

{

title: "二代身份证本不该有“先天缺陷”",

stitle: "",

link: "http://views.ce.cn/view/ent/201308/14/t20130814_24660158.shtml"

},

{

title: "子房先生:经济结构调整初见成效 改革迎来有利契机",

stitle: "",

link: "http://views.ce.cn/view/ent/201308/13/t20130813_24655775.shtml"

},

{

title: "",

stitle: "",

link: ""

}

];

```

```javascript// 设置Switcher[5]的title属性为"李宁:房地产调控长效机制关联农村土地流转制度改革"

Switcher[5]['title'] = "李宁:房地产调控长效机制关联农村土地流转制度改革";

// 设置Switcher[5]的stitle属性为空字符串

Switcher[5]['stitle'] = "";

// 设置Switcher[5]的link属性为"http://views.ce.cn/view/ent/201308/13/t20130813_24655774.shtml"

Switcher[5]['link'] = "http://views.ce.cn/view/ent/201308/13/t20130813_24655774.shtml";

// 初始化刷新定时器为null

var refreshSwitchTimer = null;

// 调用switchPic函数,传入当前屏幕CurScreen作为参数

switchPic(CurScreen);

// 设置刷新定时器的时间为3000毫秒后执行reSwitchPic函数

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

```