﻿ $(document).ready(function(){ 

        $(".search").pngFix(); 

        $(".notice_container").innerfade({speed: 'normal', timeout: 5000, type: 'sequence', containerheight: '23px' });

        $("ul.topnav li ").hover(function() {

            $(this).find("ul.subnav").slideDown('normal').show();

            }, function(){       

            $(this).find("ul.subnav").slideUp('normal'); //When the mouse hovers out of the subnav, move it back up       

        });                 

    }); 

function _onlink()
{
  $('#_link').slideToggle(800);
}

//获取当前格式化后的时间
function getNowFormatDate()
{
   var day = new Date();

   var Year = 0;
   var Month = 0;
   var Day = 0;
var CurrentDate = "";
   //初始化时间
   //Year       = day.getYear();//有火狐下2008年显示108的bug
   Year       = day.getFullYear();//ie火狐下都可以
   Month      = day.getMonth()+1;
   Day        = day.getDate();
   
   CurrentDate += Year + "-";
   
   if (Month >= 10 )
   {
    CurrentDate += Month + "-";
   }
   else
   {
    CurrentDate += "0" + Month + "-";
   }
   if (Day >= 10 )
   {
    CurrentDate += Day ;
   }
   else
   {
    CurrentDate += "0" + Day ;
   }

   return CurrentDate;
}



