// JavaScript Document
$(function(){
	$('.links').animate({opacity:"0"}, 0, function(){$(this).css({'display':'none'});});
	
	// 如果訪問者是用 IE 6 則叫他升級
	if($.browser.msie && $.browser.version <= 7){
		var msg = '', download = '';
		msg = '系統發現您尚未升級至IE8以上版本，為了電腦安全及順暢瀏覽本站，強烈建議您升級至IE8以上。';
		download = 'http://www.microsoft.com/taiwan/windows/internet-explorer/default.aspx';
		
		// 顯示 Activebar
		$('<div></div>').html(msg).activebar({
			icon: 'images/monkey.png',
			highlight: '#996600',
			url: download
		});
	}
	
	$('.top_link').css({'display':'none', 'top':'-20px'}).animate({opacity:0}, 0);
	$('.header').hover(function(){
		$('.top_link').css({'display':'block'}).stop().animate({'top':'0px', opacity:1}, 500);
	},function(){
		$('.top_link').stop().animate({'top':'-20px', opacity:0}, 500, function(){$(this).css({'display':'none'});});
	});
});
