// ページアンカー
$(document).ready(function(){
			$("a[href*='#']").filter(function(){
				return !$(this).parent().parent().hasClass("tab");
			}).slideScroll();
});


// アコーディオン
$(document).ready(function(){
	$("dl.qa dd:not(:first)").hide();
	$("dl.qa dt").hover(function(){
		$(this).css("cursor","pointer");
	},function(){
		$(this).css("cursor","default");
		});
	$("dl.qa dd").css("display","none");
	$("dl.qa dt").click(function(){
		$(this).next().slideToggle("slow");
		$(this).next().css("display","block");
	});
});


// タブ
$(function(){
	$('#rotate > ul').tabs({ fx: { opacity: 'toggle' } }).tabs('rotate', 0);
});


// 高さ調節
$(document).ready(function(){
var maxHeight = 0;
$("#main .entryBox").each(function() {
    height = $(this).height();
    if (maxHeight < height) {
        maxHeight = height;
    }
}).height(maxHeight);
});
