//addLoadEvent(kongbaguniAsciiArtOnmouseoverAction);
function kongbaguniAsciiArtOnmouseoverAction(){
	var item_el = getElementsByClassName2("item",document.getElementById("content_main"));
	for (var i=0;i<item_el.length;i++){
		var table_el = item_el[i].getElementsByTagName("table");
		table_el[2].className = "reply action";
		animateElement(table_el[1],0,100,"opacity");

		var caption_el = table_el[2].getElementsByTagName("caption")[0];
		caption_el.f = false;
		caption_el.setAttribute("style","cursor:pointer");
		caption_el.onclick = function(){
			var node = this.parentNode;
			if (node.timeout) clearTimeout(node.timeout["bottom"]);
			if (this.f==false){
                animateElement(node,0,300,"bottom");
                this.f=true;
                return false;
            }else {
                animateElement(node,300,0,"bottom");
                this.f=false;
                return false;
            }
			return false;
		}


	}
}
