//// フェード効果
$(function(){
  $('.entry-content a img').hover(
    function() {
			$(this).css("cursor","pointer");
      $(this).fadeTo(1, 0.6);
    },
    function() {
			$(this).css("cursor","default");
      $(this).fadeTo(100, 1);
    }
  );
});

//// h1非表示
$(document).ready(function() {
	$('h1').each(function() {
		$(this).hide();
	});
});

