	var top_news	=	[
	                     {"url":"http://www.cscec.com/cms/index/key/news_one/o/511","title":"热烈祝贺中国建筑进入财富全球500强企业前200名"},
	                     {"url":"/files/sustainable.pdf","title":"中国建筑2009年可持续发展报告"}
						
						];
	window.setInterval(	"top_news_show()",	4000	);
	var top_news_now	=	1;
	function top_news_show(){
		try{
			var myEffects = new Fx.Styles('top_news_view', {duration: 1000, transition: Fx.Transitions.linear});
			//height from 10 to 100 and width from 900 to 300
			myEffects.start({
				'opacity': [0, 1]
			});
		}catch(e){
		
		}
		if(	top_news_now	==	top_news.length	){
			top_news_now	=	0;
			document.getElementById('top_news_view').innerHTML	=	'<a target="_blank" href="'+top_news[top_news_now]['url']+'">'+top_news[top_news_now]['title']+'</a>'+'</div>';
		}else{
			document.getElementById('top_news_view').innerHTML	=	'<a target="_blank" href="'+top_news[top_news_now]['url']+'">'+top_news[top_news_now]['title']+'</a>'+'</div>';
			top_news_now	+=1;
		}

	}
	document.write('<div class="" style="width:300px;height:20px;overflow:hidden;font-weight:bold;font-size:14px;" id="top_news_view">'+
					'<a target="_blank" href="'+top_news[0]['url']+'">'+top_news[0]['title']+'</a>'+'</div>')