// context
$(document).ready(function(){
$('.entry_box_s ').hover(
	function() {
		$(this).find('.context_t').stop(true,true).fadeIn();
	},
	function() {
		$(this).find('.context_t').stop(true,true).fadeOut();
	}
);
});
// 关闭
function turnoff(obj){
document.getElementById(obj).style.display="none";
}
// 文字滚动
(function($){
$.fn.extend({
Scroll:function(opt,callback){
if(!opt) var opt={};
var _this=this.eq(0).find("ul:first");
var        lineH=_this.find("li:first").height(),
line=opt.line?parseInt(opt.line,10):parseInt(this.height()/lineH,10),
speed=opt.speed?parseInt(opt.speed,10):1000,//卷动速度，数值越大，速度越慢（毫秒）
timer=opt.timer?parseInt(opt.timer,10):1000;//滚动的时间间隔（毫秒）
if(line==0) line=1;
var upHeight=0-line*lineH;
scrollUp=function(){
_this.animate({
marginTop:upHeight
},speed,function(){
for(i=1;i<=line;i++){
_this.find("li:first").appendTo(_this);
}
_this.css({marginTop:0});
});
}
_this.hover(function(){
clearInterval(timerID);
},function(){
timerID=setInterval("scrollUp()",timer);
}).mouseout();
}
})
})(jQuery);
$(document).ready(function(){
$(".bulletin").Scroll({line:1,speed:1000,timer:5000});//修改此数字调整滚动时间
});
//加载中提示
$(document).ready(function(){
$('h3 a,.cat_post a,#scat a').click(function(){
$(this).text('您點選的文章正在載入中...');
window.location = $(this).attr('href');
});
});
//提示
var titleToNote = {
elements : ['a', 'img'],
setup : function(){
if(!document.getElementById || !document.createElement) return;
var div = document.createElement("div");
div.setAttribute("id", "title2note");
document.getElementsByTagName("body")[0].appendChild(div);
document.getElementById("title2note").style.display = "none";
for(j=0;j<titleToNote.elements.length;j++){
for(i=0;i<document.getElementsByTagName(titleToNote.elements[j]).length;i++){
var el = document.getElementsByTagName(titleToNote.elements[j])[i];
if(el.getAttribute("title") && el.getAttribute("title") != ""){
el.onmouseover = titleToNote.showNote;
el.onmouseout = titleToNote.hideNote;
}
}
}
},
showNote : function()
{
document.getElementById("title2note").innerHTML = this.getAttribute("title");
this.setAttribute("title", "");
document.getElementById("title2note").style.display = "block";
},
hideNote : function()
{
this.setAttribute("title", document.getElementById("title2note").innerHTML);
document.getElementById("title2note").innerHTML = "";
document.getElementById("title2note").style.display = "none";
}
}
var oldonload=window.onload;if(typeof window.onload!='function'){
window.onload=titleToNote.setup;
}else{window.onload=function(){oldonload();
titleToNote.setup();}}
