// JavaScript Document// JavaScript Document
$(document).ready(function(){
	setTimeout(scrollTo, 100, 0, 1);
	$('.threeColumn .leftmenuBox2 dd:last-child').css('background-position', '0px -119px');
	$('#centerContent .entry .sectionTxt:last-child').css('margin-bottom',' 0px');
	$('p.sectionTxt:has(a)').addClass("clearfix");
	$('.more-link').wrap('<div class="clearfix"></div>');//imgに前後divを追加
	$('.entryBody p').addClass("sectionTxt");
	$('#sp_menu a').click(function(){
        $('#anime').toggleClass('active');
        $('#sp_menu a').toggleClass('active');
    });
	$('.entryBody .sectionTxt img').wrap('<div class="sectionImg"></div>');//imgに前後divを追加
	$('.entryBody .p_embed img').wrap('<div class="sectionImg"></div>');//imgに前後divを追加
    $('.etcImg').wrap('<div class="deathImg"></div>');//imgに前後divを追加
	$('#tagArea a').wrap('<li></li>');//tagArea aをliで包む
	$('#anime dl#tags a').wrap('<dd></dd>');//#anime dl#tags aをddで包む
	$('.entryBody .sectionTxt img').removeAttr('height');
	$('.entryBody .p_embed img').removeAttr('height');

	$('.threeColumn .leftmenuBox2 dd:last-child').hover(
	function(){ 
	$(this).css('background-position', '-220px -119px');
    },
	function(){
	$(this).css('background-position', '0px -119px');
    }
);
});
