(function(){window.setting={styling:".fontM {font-size:1em; width:30px; height:30px;} .fontS {font-size:0.9em; width:30px; height:30px;} .fontL {font-size:1.1em; width:30px; height:30px;}#fontChange {_overflow:hidden;_zoom:1; height:30px;}#fontChange li{float:left;display:block; width:30px; height:30px;padding:0;text-align:center;line-height:normal;margin-right:5px;}#fontChange li:hover{cursor:pointer;}"}; if(setting.styling){var a=document.createElement("style"),b=document.getElementsByTagName("head")[0];a.type="text/css";try{a.appendChild(document.createTextNode(setting.styling))}catch(c){if(a.styleSheet)a.styleSheet.cssText=setting.styling}b.appendChild(a)}})();
 
jQuery(function($){
	var history = $.cookie('fontSize');
	var elm = $('#wrapper');
	(!history)? elm.addClass('fontM'):elm.addClass(history);
	$('li','#fontChange').click(function(){
		var setFontSize = this.id;
		$.cookie('fontSize', setFontSize);
		elm.removeClass().addClass(setFontSize);
	});
});
