$(document).ready(function(){
	$(document).ready(function(){
		if($.cookie("font-size") != null){
			if($.cookie("font-size")*1>0){
				for(i=0;i<($.cookie("font-size")*1);i++){
					doFontBigger();
				}
			}
			else
			{
				for(i=0;i<($.cookie("font-size")*-1);i++){
					doFontSmaller();
				}
			}
		}	
		$("#fontBig").click(function(){
			doFontBigger();
			$.cookie("font-size", ($.cookie("font-size")*1)+1, { path: '/' });
		});
		$("#fontSmall").click(function(){
			doFontSmaller();
			$.cookie("font-size", ($.cookie("font-size")*1)-1, { path: '/' });
		});	
		function doFontBigger() {
			makeFontBigger($("#topNav"));
			makeFontBigger($("#content p"));
			makeFontBigger($("#content h2"));
			makeFontBigger($("#content h3"));
			makeFontBigger($("#content h4"));
			makeFontBigger($("#content li"));
			makeFontBigger($(".mainColumn p"));
			makeFontBigger($(".mainColumn h2"));
			makeFontBigger($(".mainColumn h3"));
			makeFontBigger($(".mainColumn h4"));
			makeFontBigger($(".mainColumn li"));
			makeFontBigger($("#leftNav"));
			makeFontBigger($("#suppNav"));
			makeFontBigger($("#footer"));
			makeFontBigger($("#rightColumn"));
		}
		function doFontSmaller() {
			makeFontSmaller($("#topNav"));
			makeFontSmaller($("#content p"));
			makeFontSmaller($("#content h2"));
			makeFontSmaller($("#content h3"));
			makeFontSmaller($("#content h4"));
			makeFontSmaller($("#content li"));
			makeFontSmaller($(".mainColumn p"));
			makeFontSmaller($(".mainColumn h2"));
			makeFontSmaller($(".mainColumn h3"));
			makeFontSmaller($(".mainColumn h4"));
			makeFontSmaller($(".mainColumn li"));
			makeFontSmaller($("#leftNav"));
			makeFontSmaller($("#suppNav"));
			makeFontSmaller($("#footer")); 
			makeFontSmaller($("#rightColumn"))
		}
		function makeFontBigger (obj) {
			if(obj[0]){
				obj.css("font-size", (obj.css("font-size").split("px").join("")*1)+1);
			}
		}
		function makeFontSmaller (obj) {
			if(obj[0]){
				obj.css("font-size", (obj.css("font-size").split("px").join("")*1)-1);
			}
		}
	});
});<!-- 

 -->