$(document).ready(function(){

$(".addtextswap").after("<dl id=\"swapcss\"><dt><span class=\"none\">文字サイズ</span></dt><dd id=\"small\"><span class=\"none\">小</span></dd><dd id=\"nomal\" class=\"here\"><span class=\"none\">中</span></dd><dd id=\"big\"><span class=\"none\">大</span></dd></dl>");

$("#swapcss dd").css("cursor", "pointer");

$("#swapcss dd").eq(0).click(function () {
	setActiveStyleSheet('small');
	$("#swapcss dd").eq(0).addClass("here");
	$("#swapcss dd").eq(1).removeClass("here");
	$("#swapcss dd").eq(2).removeClass("here");
});
	
$("#swapcss dd").eq(1).click(function () {
	setActiveStyleSheet(' ');
	$("#swapcss dd").eq(1).addClass("here");
	$("#swapcss dd").eq(0).removeClass("here");
	$("#swapcss dd").eq(2).removeClass("here");
});

$("#swapcss dd").eq(2).click(function () {
	setActiveStyleSheet('large');
	$("#swapcss dd").eq(2).addClass("here");
	$("#swapcss dd").eq(1).removeClass("here");
	$("#swapcss dd").eq(0).removeClass("here");
});

});   

