$(function(){
	if($.cookie('stylepath') != null){
		$("#style").attr("href",$.cookie('stylepath'));
	}
	if($.cookie('fontsize') == null){
		$("#fontSmall").addClass("font_on");
	}else{
	$("#fontSmall,#fontMiddle,#fontLarge").removeClass("font_on");
	$("#"+$.cookie("fontsize")).addClass("font_on");
	}
});
function styleChange(stylePath,fontSize,obj){
$("#style").attr("href",stylePath);
	$("#fontSmall,#fontMiddle,#fontLarge").removeClass("font_on");
	$(obj).addClass("font_on");
$.cookie("stylepath",stylePath,{expires:30,path:'/'});
$.cookie("fontsize",fontSize,{expires:30,path:'/'});
}
