$(document).ready(function() {
	
	$("#size1") .click (function()
			{
				$(".textItem p, .textItem ul li, .textItem h4").css({ "font-size": "1.1em"});	
			});
					
	$("#size2") .click (function()
			{
				$(".textItem p, .textItem ul li, .textItem h4").css({ "font-size": "1.2em"});	
			});
					
	$("#size3") .click (function()
			{
				$(".textItem p, .textItem ul li, .textItem h4").css({ "font-size": "1.3em"});
			});

});
