$(function() {

$('table.csc-frame-frame1').addClass('contenttable');
$('table.csc-frame-frame1').addClass('contenttable-1');
$('table.csc-frame-frame1').removeClass('csc-frame-frame1');

$('table.csc-frame-frame2').addClass('contenttable');
$('table.csc-frame-frame2').addClass('contenttable-2');
$('table.csc-frame-frame2').removeClass('csc-frame-frame2');

 var COOKIE_NAME = 'fontsize';
 var options = { path: '/', expires: 100 };
  	$('#normal-font').click(function() {
 	 $.cookie(COOKIE_NAME, 1, options);
 	 $('body').css('font-size', "75%");
 	 $('#normal-font').css('font-weight', "bold");
 	 $('#bigger-font').css('font-weight', "normal");
 	 $('#even-bigger-font').css('font-weight', "normal");
 	return false;
 	});
 	$('#bigger-font').click(function() {
 	 $.cookie(COOKIE_NAME, 2, options);
 	 $('body').css('font-size', "85%");
 	 $('#bigger-font').css('font-weight', "bold");
 	 $('#normal-font').css('font-weight', "normal");
 	 $('#even-bigger-font').css('font-weight', "normal");
 	return false;
 	});
 	$('#even-bigger-font').click(function() {
 	 $.cookie(COOKIE_NAME, 3, options);
 	 $('body').css('font-size', "95%");
 	 $('#even-bigger-font').css('font-weight', "bold");
 	 $('#normal-font').css('font-weight', "normal");
 	 $('#bigger-font').css('font-weight', "normal");
 	return false;
 	});
 	
 	if($.cookie(COOKIE_NAME) == 1) {
 		$('body').css('font-size', "75%");
 		$('#normal-font').css('font-weight', "bold");
 	} else if ($.cookie(COOKIE_NAME) == 2) {
 		$('body').css('font-size', "85%");
 		$('#bigger-font').css('font-weight', "bold");
 	} else if ($.cookie(COOKIE_NAME) == 3) {
 		$('body').css('font-size', "95%");
 		$('#even-bigger-font').css('font-weight', "bold");
 	}	
 	
 	$('#normal-font').css('font-size', "10px");
 	$('#normal-font').css('text-decoration', "none");
 	$('#bigger-font').css('font-size', "12px");
 	$('#bigger-font').css('text-decoration', "none");
 	$('#even-bigger-font').css('font-size', "14px");
 	$('#even-bigger-font').css('text-decoration', "none");
 	
 	
});
