$(document).ready(function(){
	fontResizer('1.0em','1.15em','1.3em');

	readCookie();
	
	
	$("#tonly_btn").click(function(){
		if($.cookie("style") == "true"){
			loadDefaultVersion();
		}else{
			loadTextOnlyVersion();
		}
	});
	
	

});

function readCookie()
{
	if($.cookie("style") == "true"){
		$("#tonly_btn").html("Default Style");
		$("#report_crime_btn").html('<a href="report-a-crime">Report A Crime</a>');
		$("#contact_bnt").html('<a href="contact-us">Contact Us</a>');
	}else{
		
	}
}

function loadTextOnlyVersion()
{	
	$.cookie("style", "true");
	
	window.location.reload();
}

function loadDefaultVersion()
{
	$.cookie("style", null);
	window.location.reload();
}

















