
	(function() {
		var seo = {};
		seo.addJsonLdToHead = function(txt) {
			var scriptTag = document.createElement("script");
			scriptTag.setAttribute("type", "application/ld+json");
			scriptTag.appendChild(document.createTextNode(JSON.stringify(txt)));
			document.getElementsByTagName("head")[0].appendChild(scriptTag);
		}
		seo.createJsonLd = function() {
			var json = {
				"@context" : "http://schema.org",
				"@type" : "Festival",
				"name" : "2019 Roswell Beer Festival",
				"startDate" : "2019-03-23T14:00",
				"location" : {
					"@type" : "Place",
					"name" : "Roswell Town Square",
					"address":{
						"@type":"PostalAddress",
						"streetAddress": "610 South Atlanta St",
						"addressLocality": "Roswell",
						"addressRegion": "GA",
						"postalCode": 30075
					}
				},
				"offers" : {
					"@type" : "Offer",
					"url" : "https://www.bigtickets.com/e/roswell-beer-festival/2019-roswell-beer-festival/"
				}
			};
			return json;
		}
		
		seo.initiate = function(){
			seo.addJsonLdToHead(seo.createJsonLd());
		}

		seo.initiate();
	})();
