$(document).ready(

  function() {
    var url = location.href;
    if (url.match('/shop/detail/')) {
      if(!$('.shop-detail table').attr('media')) {
    	location.href = '/';
      }
    }
    
    $('.information .open-history a').click(function() {
      if ($(this).hasClass('show')) {
        $(this).removeClass('show');
        $(this).text('過去の情報を隠す');
        $('.information .history').removeClass('hide');
      } else {
        $(this).addClass('show');
        $(this).text('過去の情報を見る');
        $('.information .history').addClass('hide');
      }
    });
    
    $('.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();
        }
    });
    
    $(".ranking .left").hover(
      function(){
    	$('.ranking .left').fadeTo(0.1, 1);
    	$(this).fadeTo(0.1, 0.55);
      },
      function(){   // マウスアウト
    	$(".ranking .left").fadeTo(0.55, 1);
      }
    );

    $(".ranking .ranking-name").hover(
      function(){
    	$('.ranking .ranking-name').fadeTo(0.1, 1);
    	$(this).fadeTo(0.1, 0.55);
      },
      function(){   // マウスアウト
    	$(".ranking .ranking-name").fadeTo(0.55, 1);
      }
    );
    

  }

);