Code Executing Too Late?

Per comments, declare it global before using in both (or all) places:

global $sitetype;
if ( $_SERVER["HTTP_HOST"] === "domain1.com" ) { $sitetype = one; } //etc

and

global $sitetype;
if ( $sitetype == all ){ echo "site type 1"; } //etc