var usersuggest_array=new Array();
usersuggest_array.push(new Object({name:'IT',id:'it',url:'it.news.hexun.com'}));
usersuggest_array.push(new Object({name:'房产',id:'house',url:'house.news.hexun.com'}));
usersuggest_array.push(new Object({name:'传媒',id:'media',url:'media.news.hexun.com'}));
usersuggest_array.push(new Object({name:'评论',id:'opinion',url:'opinion.news.hexun.com'}));
usersuggest_array.push(new Object({name:'商旅',id:'travel',url:'travel.hexun.com'}));
usersuggest_array.push(new Object({name:'奢侈品',id:'luxuries',url:'luxuries.news.hexun.com'}));
usersuggest_array.push(new Object({name:'高尔夫',id:'golf',url:'golf.news.hexun.com'}));
usersuggest_array.push(new Object({name:'汽车',id:'auto',url:'auto.news.hexun.com'}));
usersuggest_array.push(new Object({name:'焦点',id:'topic',url:'topic.news.hexun.com'}));
usersuggest_array.push(new Object({name:'生活',id:'life',url:'life.news.hexun.com'}));
usersuggest_array.push(new Object({name:'新闻',id:'news',url:'news.hexun.com'}));
usersuggest_array.push(new Object({name:'读书',id:'book',url:'book.hexun.com'}));
usersuggest_array.push(new Object({name:'股票',id:'stock',url:'stock.hexun.com'}));
usersuggest_array.push(new Object({name:'基金',id:'funds',url:'funds.money.hexun.com'}));
usersuggest_array.push(new Object({name:'期货',id:'futures',url:'quote.funds.hexun.com'}));
usersuggest_array.push(new Object({name:'债券',id:'bond',url:'bond.money.hexun.com'}));
usersuggest_array.push(new Object({name:'股指期货',id:'stockfutures',url:'futures.money.hexun.com/index/'}));
usersuggest_array.push(new Object({name:'期货',id:'futures',url:'futures.money.hexun.com'}));
usersuggest_array.push(new Object({name:'期货',id:'futures',url:'quote.futures.hexun.com'}));
usersuggest_array.push(new Object({name:'外汇',id:'forex',url:'forex.money.hexun.com'}));
usersuggest_array.push(new Object({name:'黄金',id:'gold',url:'gold.money.hexun.com'}));
usersuggest_array.push(new Object({name:'保险',id:'insurance',url:'insurance.money.hexun.com'}));
usersuggest_array.push(new Object({name:'银行',id:'bank',url:'bank.money.hexun.com'}));
usersuggest_array.push(new Object({name:'理财',id:'money',url:'money.hexun.com'}));
usersuggest_array.push(new Object({name:'健康',id:'health',url:'health.hexun.com'}));
usersuggest_array.push(new Object({name:'和讯视点',id:'tv',url:'tv.hexun.com'}));
var temp_str=''+document.location;
for(var loops=0;loops<usersuggest_array.length;loops++){
	if(temp_str.indexOf(usersuggest_array[loops].url)>-1){
		var temp_obj=document.getElementById('hexunUserSuggest');
		temp_obj.href+='?id='+usersuggest_array[loops].id;
		if(document.getElementById('hexunUserContact')){
			document.getElementById('hexunUserContact').href=temp_obj.href;
		}
		temp_obj.firstChild.data=usersuggest_array[loops].name+'频道恭候您的意见';
		break;
	}
}