// 
// Post Thumbnails
//
$(function() {
// OPACITY OF BUTTON SET TO 80%
$(".attachment-thumbnail").css("opacity","0.9");

  // ON MOUSE OVER
  $(".attachment-thumbnail").hover(function () {
    // SET OPACITY TO 100%
    $(this).stop().animate({
    opacity: 1.0
    }, "fast");
  },
 
  // ON MOUSE OUT
  function () {
     // SET OPACITY BACK TO 80%
    $(this).stop().animate({
    opacity: 0.9
    }, "fast");
  });
  
});

// 
// Post Featured Image
//
$(function() {
// OPACITY OF BUTTON SET TO 80%
$(".attachment-opacity").css("opacity","0.9");

  // ON MOUSE OVER
  $(".attachment-opacity").hover(function () {
    // SET OPACITY TO 100%
    $(this).stop().animate({
    opacity: 1.0
    }, "fast");
  },
 
  // ON MOUSE OUT
  function () {
     // SET OPACITY BACK TO 80%
    $(this).stop().animate({
    opacity: 0.9
    }, "fast");
  });
  
});

//
// Addthis on hover effect
//
function showShareIcons(entryid, share_url, share_text)
{
  document.getElementById('share_icons_'+entryid).style.display = "block";
  document.getElementById('share_'+entryid).style.display = "none";
}

function hideShareIcons(entryid)
{
  document.getElementById('share_icons_'+entryid).style.display = "none";
  document.getElementById('share_'+entryid).style.display = "block";
}
