// Initialize empty paywall object
var squaredPaywall = null;

// Wait until the SquaredPaywall "class" has been defined, then create an instance
var paywall_init_interval = setInterval(function() {
	// See if the paywall code has been included
	if (typeof SquaredPaywall === "undefined") {
		return;
	}

	if (squaredPaywall === null) {
		// Initialize the paywall
		squaredPaywall = new SquaredPaywall({"aid":"bhGmWgV9QE","debug":false,"sandbox":false,"rid":"RST070C","offerId":"OF0843Q12J5T","accountTemplateId":"OT6BZEE0QI86","modalPaywall":false,"completedSubscriptionUrl":"https:\/\/www.greentechmedia.com\/?ACT=154","loggedIn":false,"accountEligible":false,"registrationComplete":false,"email":null,"entryId":null,"userRef":null,"contentCreated":"2013-11-22T11:57:52-0500","contentAuthor":"Jade Jones","contentSection":"Solar","promotionInfoActionUrl":"https:\/\/www.greentechmedia.com\/?ACT=173","existingTPUser":false}, {"global:squared_ecomm_product_list":"GTM Squared","global:squared_ecomm_product_id_prefix":"squared_product_","global:squared_ecomm_price":"249.00","global:squared_ecomm_brand":"GTM Squared"});
	}

	// Clear the interval
	clearInterval(paywall_init_interval);
}, 50);