$(document).ready(
  function(){
    
    $('.media-redir a.redirect').each(
      function() {
	var rel = $(this).attr('rel');
	var href = $(this).attr('href');
	$(this).attr('rel', href);
	$(this).attr('href', rel);
    });
    
    $('.media-redir a.redirect').click(
      function(e) {
        if ($(this).attr('rel')) {
          location.href = $(this).attr('rel');
          e.preventDefault();
        }
    });
    
    $(".image-fade img").hover(
      function(){
    	$('.image-fade img').fadeTo(0.1, 1);
    	$(this).fadeTo(0.1, 0.55);
      },
      function(){   // マウスアウト
    	$(".image-fade img").fadeTo(0.55, 1);
      }
    );

  }

);