function resizeText(multiplier){
	var currentSize = parseFloat($("p").css("fontSize"));
	newSize = currentSize + multiplier + "px";
	$("p").css("fontSize",newSize);
	
	var currentSizeLI = parseFloat($(".mainContentContainer li").css("fontSize"));
	newSizeLI = currentSizeLI + multiplier + "px";
	$(".mainContentContainer li").css("fontSize",newSizeLI);
	
	var currentSizeH1 = parseFloat($(".checklists H1").css("fontSize"));
	newSizeH1 = currentSizeH1 + multiplier + "px";
	$(".checklists H1").css("fontSize",newSizeH1);
	
	var currentSizeLabel = parseFloat($(".checklists Label").css("fontSize"));
	newSizeLabel = currentSizeLabel + multiplier + "px";
	$(".checklists Label").css("fontSize",newSizeLabel);
}
