jQuery(document).ready(function() {
  if (jQuery("#action_icons").length) {
    jQuery("#mc_signup").hide();
    jQuery("#action_icons .subscribe").removeClass("preload");
    jQuery("#action_icons .subscribe a").click(function() { jQuery('#mc_signup').toggle('fast'); return false; });
    jQuery("#action_icons .reads a").click(function() { return false; });
    jQuery("#action_icons .like a").click(function() { 
      DISQUS.dtpl.actions.fire('thread.vote', 1);
      jQuery(window).scrollTop(jQuery("#dsq-like-thread-button").offset().top - 200);
      return false;
    });    
  }
});

