// @auth ghunt
// @name openGraphMetaTags.js
// @desc adds meta tags for the open graph framework (FB/Tumblr)
// @change
//   2011-10-10 ghunt
//     created the file

jQuery(window).load(function() {
  setupOGMetaTags();
});

function setupOGMetaTags() {
  var j = jQuery.noConflict();
  var img = j('#productImage').attr('src');
  var meta = j('<meta>').attr('property', 'og:image');
  meta.attr('content', img);
  j('head').append(meta);
}
