//
// ------------------------------------------------------------------
// ライブドアブログでコメント逆順に並び替えるスクリプト
// ------------------------------------------------------------------
//
// http://blog.livedoor.jp/takoashi/
// created by takoashi
//
// 最終更新：2004/12/07 15:04:02
//

	var divs = document.getElementsByTagName( "div" );
	var tblist_post = new Array();
	var tblist_body = new Array();
	var	thlist_count = 0;
	for( var i=0 ; i<divs.length ; i++ )
	{
		if(	divs[i].getAttribute("class")		== "comments-post" || 
			divs[i].getAttribute("class")		== "comments-body" || 
			divs[i].getAttribute("className")	== "comments-post" || 
			divs[i].getAttribute("className")	== "comments-body" )
		{
			tblist_post[thlist_count] = divs[i].innerHTML;
			tblist_body[thlist_count] = divs[i+1].innerHTML;
			thlist_count++;
			i++;
		}
	}

	divs = document.getElementsByTagName( "div" );
	for( i=0 ; i<divs.length ; i++ )
	{
		if(	divs[i].getAttribute("class")		== "comments-post" || 
			divs[i].getAttribute("class")		== "comments-body" || 
			divs[i].getAttribute("className")	== "comments-post" || 
			divs[i].getAttribute("className")	== "comments-body" )
		{
			thlist_count--;
			divs[i].innerHTML	= tblist_post[thlist_count];
			divs[i+1].innerHTML = tblist_body[thlist_count];
			i++;
		}
	}
