$(document).ready(function() {

	//was used to when site was in test mode
	/*strb=$('.centerer').html();

	input = new RegExp("/www.etaxresolution","gi"); 
	output = '/etaxresolution'; 
	strb=strb.replace(input,output);

	input = new RegExp("/etaxresolution","gi"); 
	output = '/etax.lothamer'; 
	strb=strb.replace(input,output);

	input = new RegExp("https://etax.lothamer.com","gi"); 
	output = 'http://etax.lothamer.com'; 
	strb=strb.replace(input,output);

	//document.body.innerHTML = strb.replace(input,output); 
	$('.centerer').html(strb.replace(input,output));*/
	//was used to when site was in test mode
	strb=$('.centerer').html();

	input = new RegExp("/etax.lothamer","gi"); 
	output = '/www.etaxresolution'; 
	strb=strb.replace(input,output);

	input = new RegExp("http:","gi"); 
	output = 'https:'; 
	strb=strb.replace(input,output);


	//document.body.innerHTML = strb.replace(input,output); 
	$('.centerer').html(strb.replace(input,output));
});