    
  $(document).ready(function(){
  //第一個指令是把頁面最上方的tab標籤加上去,配合show_ul()與hide_ul()就變成一個滑鼠的換圖程式
    $("table#barner tr td").css("background-image","url(images/tab3.gif)").css("background-repeat","no-repeat").css("color","White").css("width","97px").css("height","31px");
    $("table#barner tr td").hover(show_ul,hide_ul);
    
    
    //處理畫面右邊的所有聯結,使用方法:
    //第一個css是定義標籤的背景圖片;
    //第二個css是定義圖片重覆排列的方向;
    //第三個css是定義文字的色彩;
    //第四、第五個是定義欄位的長與寬//
    //$("table#link_table tr td").css("background-image","url(images/link_marker.gif)").css("background-repeat","no-repeat").css("color","White").css("width","180px").css("height","31px");
	
	
	//中心介紹的下拉式選單起點
	$("itemPlaceholderContainer").hover(hide_all_tab,do_nothing);
	$("#intro").hover(show_intro_over,do_nothing);
	$("#tab_1").hover(do_nothing,hide_all_tab);
	$("#event").hover(show_event_over,do_nothing);
	$("#tab_2").hover(do_nothing,hide_all_tab);
	$("#message").hover(show_message_over,do_nothing);
	$("#tab_3").hover(do_nothing,hide_all_tab);
  });
  
  
    //中心介紹的選單事件
    function show_intro_over()
    {
        $(document).queue("myAnimation",FUND_intro)
        aniCB();
    }
    //中心介紹下拉式選單的堆疉
    var FUND_intro=[
        function() {$("#tab_1 #Tr1").fadeIn(150,aniCB);},
        function() {$("#tab_1 #Tr2").fadeIn(150,aniCB);},
        function() {$("#tab_1 #Tr3").fadeIn(150,aniCB);}
    ];

    //活動訊息的選單事件
    function show_event_over()
    {
        $(document).queue("myAnimation",FUND_event)
        aniCB();
    }
    //活動訊息下拉式選單的堆疉
    var FUND_event=[
        function() {$("#tab_2 #Tr4").fadeIn(150,aniCB);},
        function() {$("#tab_2 #Tr5").fadeIn(150,aniCB);}
    ];
    //最新訊息的選單事件
    function show_message_over()
    {
        $(document).queue("myAnimation",FUND_message)
        aniCB();
    }
    //最新訊息下拉式選單的堆疉
    var FUND_message=[
        function() {$("#tab_3 #Tr16").fadeIn(150,aniCB);}
    ];


    function hide_all_tab()
    {
        $("#tab_containt table tr").hide();
    }
    var aniCB=function() {
        $(document).dequeue("myAnimation");
    }
    
    
  function do_nothing()
  {
      
  }
  function show_ul()
  {
    $(this).css("background-image","url(images/tab3_over.gif)").css("color","Black");
  }
  function hide_ul()
  {
    $(this).css("background-image","url(images/tab3.gif)").css("color","White");
  }
