////////////////////////////////////////////////////////////////////////////////
//
//	[ファイル名]	cs.js
//	
//	[文字コード]	utf-8
//	
//	[概要]	
//
////////////////////////////////////////////////////////////////////////////////
$(function(){
	var section2 = document.getElementById("section2");
	var lis = section2.getElementsByTagName("li");
	for(var i=0, len=lis.length; i<len; i++){
		var h3 = lis[i].getElementsByTagName("h3").item(0);
		h3.innerHTML = ["<span>メッセージ ", i+1, "</span>"].join("");
		h3.style.backgroundPosition = ["0px", [(-40 * (i + 1)), "px"].join("")].join(" ");
		h3 = null;
	}
	var objs = section2.getElementsByTagName("p");
	for(var i=0; i<objs.length; i+=2){
		var pair = new Array();
		if(objs[i+1]){
			pair.push(objs[i]);
			pair.push(objs[i+1]);
			new blades.EqualHeight(pair);
		}
		pair = null;
	}
	section2 = null;
	lis = null;
	objs = null;
});
