$(document).ready(function(){
	$('a[rel=tooltip]').tipsy({gravity: 'e'});
	$('.justify th').justify();
//	$('#main div div.main-text').css("height","38px");
	$('#main div div.small-button a').click(function() {
//		$(this).parent().parent().children(".main-text").css("height", "100%");
		$(this).parent().parent().children(".main-text").css({height:"100%",overflow:"visible"});
		$(this).css("display", "none");
	});
	$('dl.faq dt a').click(function() {
		$(this).parent().next().toggle();
	});
	// グローバル・ナビゲーション・メニュー
	$('#global-nav-menu li.category').hover(
		function() { $('ul', this).css('display', 'block'); },
		function() { $('ul', this).css('display', 'none'); });

	// iframe のボーダーを隠す
	$('#embeddedHTML').attr(
		"frameborder","0"
	);
});

