var strURL = window.location.href;

if (strURL.substring(0,7).toLowerCase() == "http://" ) {
	strURL = 'https://' + strURL.substring(7);
	window.location = strURL;
}