setting.js

 
/**
 * setting.js 
 *
 * Copyright HeavenlyStar
 * Release: 2016-5-23
 * Last Update: 2016-6-03
 * author 御縁
 */

$(function(){
	$("a[href *= 'hd=0']").each(function(){
		$(this).attr('href', 'javascript:;');
		$(this).attr('class', 'change');
	});
});

$(function(){
	$("a.change").click(function(){
		$('div#hidearea').animate( 
			{height: "toggle", opacity: "toggle"},
			"slow"
		);
	});
});
 
inserted by FC2 system