//Simple Font Resizer Javascript//
var prefsLoaded = false;
var defaultFontSize = defaultSize;
var currentFontSize = defaultFontSize;

function revertStyles(){

	currentFontSize = defaultFontSize;
	changeFontSize(1);

}

function changeFontSize(currentFontSize){

	setFontSize(currentFontSize);
};

function setFontSize(fontSize){
	var stObj = (document.getElementById) ? document.getElementById('content_area') : document.all('content_area');	if(!fontSize){		document.body.style.fontSize ='';	}else{
		document.body.style.fontSize = fontSize + '%';	}

	//alert (document.body.style.fontSize);
};




