// JavaScript Document
function changeFontSize (num) { document.getElementsByTagName('body')[0].style.fontSize = num; }

// turn off stylesheets
window.addEvent('domready', function(){
	
	$('goToTextOnly').addEvent('click', function(e) {
		e = new Event(e).stop();
	
		if ($("css-common")) $("css-common").remove();
		if ($("css-index")) $("css-index").remove();
		if ($("css-secondary")) $("css-secondary").remove();
		path = 'http://www.wv.gov/css/';
		new Asset.css(path + 'textonly.css', {id: 'css-textonly', title:'mobile css'});
	});
});
//

