/*global shell:true, _gaq */

// The shell object must be defined.
if (typeof shell === "undefined") {
	shell = {};
}

shell.mobify = {
	mobile_phone: {
		replacements: [],
		pre_metrics: function () {
			"use strict";
			_gaq.push(['_setCustomVar', 3, "Platform", "Smart Phone"]);
		},
		on_domready: function () {
			"use strict";
		}
	},
	featured_phone: {
		replacements: [],
		pre_metrics: function () {
			"use strict";
		},
		on_domready: function () {
			"use strict";
			
		}
	}
};
