        var url = document.URL;
        if( url.substr( 0,5 ) != "https" ) {
	        	// http://ahmus.com/
	        	if( url.substr( 0, 16 ) == "http://ahmus.com" ) {
		        	url = "https://ahmus.hivelocity.net" + url.substr( 16 );
	        	} else if( url.substr( 0, 20 ) == "http://www.ahmus.com" ) {
		        	url =  "https://ahmus.hivelocity.net" + url.substr( 20 );
	        	} else {
		        	// http://?
	                url = "https" + url.substr( 4 );
               }
               //window.location = url;  
        }
