$(document).ready(function(){

$(".addtextswap").after("<dl id=\"swapcss\"><dt><img src=\"http://www.u-p.co.jp/a_ophtha/_resource/img/common/header/head_tsize.gif\" width=\"85\" height=\"35\" alt=\"文字サイズ\" /></dt><dd><ul><li id=\"smalltxt\" class=\"here\"><img src=\"http://www.u-p.co.jp/a_ophtha/_resource/img/common/header/head_txts.gif\" width=\"25\" height=\"24\" alt=\"小サイズ\" /></li><li id=\"middletxt\"><img src=\"http://www.u-p.co.jp/a_ophtha/_resource/img/common/header/head_txtm.gif\" width=\"25\" height=\"24\" alt=\"中サイズ\" /></li><li id=\"largetxt\"><img src=\"http://www.u-p.co.jp/a_ophtha/_resource/img/common/header/head_txtl.gif\" width=\"25\" height=\"24\" alt=\"大サイズ\" /></li></dd></dl>");

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

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

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

});   

