
var href = document.location.href;
if (href.indexOf('https://')==0 && href.indexOf('ssl/')==-1)
	document.location.href = 'http://'+href.substr(8, href.length);if (href.indexOf('http://')==0 && href.indexOf('ssl/')>0)
	document.location.href = 'https://'+href.substr(7, href.length);

