/*
 * Make sure that fb like is loaded for elements that ajax into the page.
 */
(function ($) {
  Drupal.behaviors.swtor = {
    attach: function (context, settings) {
      try {
        FB.XFBML.parse();
      } catch (ex) {}

      // Updated tweet buttons.
      $.ajax({ url: 'http://platform.twitter.com/widgets.js', dataType: 'script', cache:true});
    }
  };
})(jQuery);;

