// JavaScript Document

function changeFontSize() {

	var c2 = document.getElementsByTagName('a');
	if(c2.style.fontSize == '' || c2.style.fontSize == 'small') {
		c2.style.fontSize = 'medium';
		createCookie('fontSizeRig2','medium',30);
	} else if(c2.style.fontSize == 'medium') {
		c2.style.fontSize = 'large';
		createCookie('fontSizeRig2','large',30);
	} else if(c2.style.fontSize == 'large') {
		c2.style.fontSize = 'x-small';
		createCookie('fontSizeRig2','x-small',30);
	} else {
		c2.style.fontSize = 'small';
		createCookie('fontSizeRig2','small',30);
	}
}

function verifyFontSize() {
	var cookie = readCookie('fontSizeRig2')
	
	if(cookie) {
		document.getElementByTagName('a').style.fontSize = cookie;
	}
}
