var setFacebookData = Class.create({
	initialize : function(title, image) {
		this.setOgTitle(title);
		this.setOgImage(image);
	},
	setOgTitle : function(title) {
		var metaOgTitle = $$('meta[property="og:title"]');
		metaOgTitle[0].setAttribute('content',title);
	},
	setOgImage : function(image) {
		var metaOgImage = $$('meta[property="og:image"]');
		metaOgImage[0].setAttribute('content',image);
	}
});
