//Sweets$(document).ready(function(){    $("#collection > li:not(:first)").css("display","none");    if(window.location.search.substr){	$showBlock =  window.location.search.substr(1);	// alert ($showBlock);	if(document.getElementById($showBlock)){	var $target = "#collection li" + "#" + $showBlock;		$("#collection > li:visible").css("display","none");		$($target).css("display","block");	}    }    $("#subMenu li:not(.otherpage) a").click(function () {	var index = $("#subMenu a").index(this);	$("#subMenu a").removeClass("now");	$(this).addClass("now");	$("#collection > li:not(index)").css("display","none");	$("#collection > li").eq(index).css("display","block");	$(this).blur();	$('html,body').animate({ scrollTop: 0 }, 0);    return false;    });    $("#saiji li:not(.otherpage) a").click(function () {	var index = $("#saiji a").index(this);	$("#saiji a").removeClass("now");	$(this).addClass("now");	$("#collection > li:not(index)").css("display","none");	$("#collection > li").eq(index).css("display","block");	$(this).blur();	$('html,body').animate({ scrollTop: 0 }, 0);    return false;    });    $("dl.topic:last").css("border-bottom", "none");    jQuery.easing.quart = function (x, t, b, c, d) {    return -c * ((t=t/d-1)*t*t*t - 1) + b;    };  });