$(document).ready(function(){
	$("#NEWS_TOP1").mouseover(function(){
		 $(this).attr("className","news1");
		 $("#DIV_NEWS_1").css("display","");
		 $("#NEWS_TOP2").attr("className","news2");
		 $("#DIV_NEWS_2").css("display","none");
	})
	$("#NEWS_TOP2").mouseover(function(){
		 $(this).attr("className","news1");
		 $("#DIV_NEWS_2").css("display","");
		 $("#NEWS_TOP1").attr("className","news2");
		 $("#DIV_NEWS_1").css("display","none");
	})
	$("#NEWS_TOP1").mouseout(function(){
		if($("#NEWS_TOP2").attr("className")=="news1")
		{
			$(this).attr("className","news2");
		}
	})
	$("#NEWS_TOP2").mouseout(function(){
		if($("#NEWS_TOP1").attr("className")=="news1")
		{
			$(this).attr("className","news2");
		}
	})
//通知通告
var DIV1="DIV_NEWS_1";
var URL1=Server+"remote/GetArticleList.php?GID=190&COUNT=6&LEN=15&DA=2&STYLE=0&ROW=3&W=110&H=50&RECOMMAND=3";
REQUEST(URL1,DIV1);
var DIV2="DIV_NEWS_2";
var URL2=Server+"remote/GetArticleList.php?GID=189&COUNT=7&LEN=20&DA=2&STYLE=0&ROW=3&W=110&H=50&RECOMMAND=3";
REQUEST(URL2,DIV2);
var DIV3="DIV_NEWS_3";
var URL3=Server+"remote/GetArticleList.php?GID=188&COUNT=7&LEN=20&DA=2&STYLE=0&ROW=3&W=110&H=50&RECOMMAND=3";
REQUEST(URL3,DIV3);
//文字新闻
var DIV1="DIV_NEWS1";
var URL1=Server+"remote/GetArticleList.php?GID=50&COUNT=7&LEN=20&DA=2&RECOMMAND=3";
REQUEST(URL1,DIV1);
var DIV2="DIV_NEWS2";
var URL2=Server+"remote/GetArticleList.php?GID=67&COUNT=7&LEN=20&DA=2&RECOMMAND=3";
REQUEST(URL2,DIV2);
var DIV5="DIV_NEWS5";
var URL5=Server+"remote/GetArticleList.php?GID=87&COUNT=7&LEN=20&DA=2&RECOMMAND=3";
REQUEST(URL5,DIV5);
var DIV6="DIV_NEWS6";
var URL6=Server+"remote/GetArticleList.php?GID=88&COUNT=7&LEN=20&DA=2&RECOMMAND=3";
REQUEST(URL6,DIV6);
//工作近况-首页推荐
var DIV4="DIV_NEWS4";
var URL4=Server+"remote/GetArticleList.php?GID=186&COUNT=12&LEN=20&DA=2&STYLE=1&ROW=6&W=160&H=100&RECOMMAND=3&IT=1&TYPE=2";
REQUEST(URL4,DIV4);
//----------------------------------------------------------------------
var DIV_OPTION="LINK_OPTION1";
var URL_OPTION=Server+"remote/GetLink.php?TYPE=1&STYLE=O&ROW=7";
REQUEST(URL_OPTION,DIV_OPTION);

var DIV_OPTION="LINK_PICTURE";
var URL_OPTION=Server+"remote/GetLink.php?TYPE=2&STYLE=P";
REQUEST(URL_OPTION,DIV_OPTION);

var DIV_OPTION="LINK_TITLE";
var URL_OPTION=Server+"remote/GetLink.php?TYPE=1&STYLE=T";
REQUEST(URL_OPTION,DIV_OPTION);
//
}
)