// JavaScript Document
$(document).ready(function() {
if($.cookie('TEXT_SIZE')) {
$('body').addClass($.cookie('TEXT_SIZE'));	
}
$('#header_fontcange a').click(function() {
var textSize = $(this).parent().attr('class');
$('body').removeClass('font_s font_m font_l').addClass(textSize);
$.cookie('TEXT_SIZE',textSize, { path: '/', expires: 10000 });
location.reload();
return false;
});
});

