// JavaScript Document

var oldBold = 1;

function textBigger(fontSize,textBold){
	$("p").css({'font-size' : fontSize})
	$(".byline").css({'font-size' : fontSize})
	$("h1").css({'font-size' : (fontSize-12) + 18})
	$(".byttl").css({'font-size' : (fontSize-12) + 9})
	$(".textSize" + textBold).css({'font-weight' : "bold"})
	$(".textSize" + oldBold).css({'font-weight' : "normal"})
			
	oldBold = textBold;
}