/**
 * @李良
 * 功能：锦绣中华首页js功能
 */
$(function(){
	$("#btnHot").click(function(){
         $("#hotList").show();
	   $("#mediaList").hide();
	   $("#competitiveList").hide();
	   $("#companyList").hide();
	     
	});
	  $("#btnMedia").click(function(){
         $("#hotList").hide();
	   $("#mediaList").show();
	   $("#competitiveList").hide();
	   $("#companyList").hide();
	     
	});
		  $("#btnCompany").click(function(){
         $("#hotList").hide();
	   $("#mediaList").hide();
	   $("#competitiveList").hide();
	   $("#companyList").show();
	     
	});
			  $("#btnCompetitive").click(function(){
         $("#hotList").hide();
	   $("#mediaList").hide();
	   $("#competitiveList").show();
	   $("#companyList").hide();
	     
	});
	  $("#btnPicHot").click(function(){
         $("#hoPictList").show();
		 $("#newPicList").hide();
	   });
		  $("#btnPicNew").click(function(){
         $("#hoPictList").hide();
	   $("#newPicList").show();
	   });
})
function Init()
{
  InitNews();
}
function InitNews()
{
 //默认显示热点新闻	
}

