$(document).ready(function(){
			$('#small').click(function(){
				$('#content').css({fontSize:"100%"});
				return false;
			});	
			$('#medium').click(function(){
				$('#content').css({fontSize:"114%"});
				return false;
			});
			$('#big').click(function(){
				$('#content').css({fontSize:"124%"});
				return false;
			});
		});