// JS

$(document).ready(function(){
	// Share
	// Hide share panel
	$('.social_bookmark').hide();
	// Toggle
	$('.show_share_icons').toggle(      
	  function () {
	   var entry_id = $(this).attr('rel');
       $('#post-' + entry_id + ' .social_bookmark').show();
	   return false;
      },
      function () {
	   var entry_id = $(this).attr('rel');
       $('#post-' + entry_id + ' .social_bookmark').hide();
	   return false;
      });
});