document.write("<div id='idPicShow'>  <ul id='idNum'>  </ul></div><div id='idPicText'></div><div id='idPicList'></div>	<style type='text/css'>#idPicShow{	width:536px;	height:171px;	border:1px solid #eee;	position:relative;}#idPicList img{	cursor:pointer;	width:65px;	height:50px;	filter:alpha(opacity=50);	-moz-opacity: .5;	opacity: .5;	border:0;	margin:10px;}#idPicList img.on{	filter:alpha(opacity=100);-moz-opacity: 1;	opacity: 1;}#idNum{ position:absolute; right:0px; bottom:0px;}#idNum li{	background-image: none;	padding:0px;	float: left;	list-style:none;	color: #fff;	text-align: center;	line-height: 16px;	width: 16px;	height: 16px;	font-family: Arial;	font-size: 12px;	cursor: pointer;	margin: 1px;	border: 1px solid #707070;	background-color: #060a0b;}#idNum li.on{	line-height: 18px;	width: 18px;	height: 18px;	font-size: 14px;	border: 0;	background-color: #ce0609;	font-weight: bold;}</style><script type='text/javascript'>var isIE = (document.all) ? true : false;var $ = function (id) {	return 'string' == typeof id ? document.getElementById(id) : id;};var Class = {	create: function() {		return function() { this.initialize.apply(this, arguments); }	}};var Extend = function(destination, source) {	for (var property in source) {		destination[property] = source[property];	}};var Bind = function(object, fun) {	return function() {		return fun.apply(object, arguments);	}};var Each = function(list, fun){	for (var i = 0, len = list.length; i < len; i++) { fun(list[i], i); }};var RevealTrans = Class.create();RevealTrans.prototype = {  initialize: function(container, options) {	this._img = document.createElement('img');	this._a = document.createElement('a');		this._timer = null;	this.Index = 0;this._onIndex = -1;		this.SetOptions(options);		this.Auto = !!this.options.Auto;	this.Pause = Math.abs(this.options.Pause);	this.Duration = Math.abs(this.options.Duration);	this.Transition = parseInt(this.options.Transition);	this.List = this.options.List;	this.onShow = this.options.onShow;		this._img.src = 'javascript:void(0);';	this._img.style.width = this._img.style.height = '100%'; this._img.style.border = 0;	this._img.onmouseover = Bind(this, this.Stop);	this._img.onmouseout = Bind(this, this.Start);	isIE && (this._img.style.filter = 'revealTrans()');		this._a.target = '_blank';	$(container).appendChild(this._a).appendChild(this._img);  },    SetOptions: function(options) {	this.options = {		Auto:		true,		Pause:		1000,		Duration:	1,		Transition:	23,		List:		[],		onShow:		function(){}	};	Extend(this.options, options || {});  },  Start: function() {	clearTimeout(this._timer);	if(!this.List.length) return;	if(this.Index < 0 || this.Index >= this.List.length){ this.Index = 0; }	if(this._onIndex != this.Index){ this._onIndex = this.Index; this.Show(this.List[this.Index]); }	if(this.Auto){		this._timer = setTimeout(Bind(this, function(){ this.Index++; this.Start(); }), this.Duration * 1000 + this.Pause);	}  },  Show: function(list) {	if(isIE){		with(this._img.filters.revealTrans){			Transition = this.Transition; Duration = this.Duration; apply(); play();		}	};	this._img.src = list.img; this._img.alt = list.text;	!!list['url'] ? (this._a.href = list['url']) : this._a.removeAttribute('href');	this.onShow();  },  Add: function(sIimg, sText, sUrl) {	this.List.push({ img: sIimg, text: sText, url: sUrl });  },  Stop: function() {	clearTimeout(this._timer);  }};</script><script>var rvt = new RevealTrans('idPicShow');rvt.Add('http://cms.eecn.cn/filebin/img/2010-02-08-15-31-47.jpg', '', 'http://pufa.gzedu.com/menhu/xuanchuan/index.html');rvt.Add('http://cms.eecn.cn/filebin/img/2009-02-23-17-36-19.jpg', '', 'http://www.jdg.eecn.cn/module/flash/main.jsp');rvt.Add('http://cms.eecn.cn/filebin/img/2009-02-23-17-35-20.jpg', '', 'http://pufa.gzedu.com/week/');rvt.Add('http://cms.eecn.cn/filebin/img/2009-05-04-14-53-20.jpg', '', 'http://pufa.gzedu.com/menhu/fanxie/index.html');var oList = $('idPicList'), oText = $('idPicText'), arrImg = [];var oNum = $('idNum'), arrNum = [];Each(rvt.List, function(list, i){	var img = document.createElement('img');	img.src = list['img']; img.alt = list['text'];	var li = document.createElement('li');	li.innerHTML = i + 1;	arrNum[i] = li;	oNum.appendChild(li);	img.onmouseover = li.onmouseover = function(){ rvt.Auto = false; rvt.Index = i; rvt.Start(); };	img.onmouseout = li.onmouseout = function(){ rvt.Auto = true; rvt.Start(); };});rvt.onShow = function(){	var i = this.Index, list = this.List[i];	Each(arrNum, function(o){ o.className = ''; }); arrNum[i].className = 'on';	};oText.onmouseover = function(){ rvt.Auto = false; rvt.Stop(); };oText.onmouseout = function(){ rvt.Auto = true; rvt.Start(); };rvt.Start();</script>");