//国選択
$(document).ready(function(){
	$("#menu dd:not(:first)").hide();
	$("#menu dt a").click(function(){
		$("#menu dd:visible").slideUp("500");
		$(this).parent().next().slideDown("300");
		return false;
	});
	
});

//お知らせ
$(document).ready(
	function(){
	$('#news_msg').innerfade({
		animationtype: 'slide',
		speed: 800,
		timeout: 6000,
		type: 'random',
		containerheight: '1em'
	});
});