$(function() {
	$(".accordion").toggle(function() {
		$(this).next(".navC").slideToggle("normal");
		$(this).removeClass("expand").addClass("close");
	},
	function() {
		$(this).next(".navC").slideToggle("normal");
		$(this).removeClass("close").addClass("expand");
	});
});

//IE6でリンク点線を消す
$(function() {
	$('p.accordion>a').focus(function(){this.blur();});
});

//マウスポインタを変更
$(function() {
	$(".accordion").hover(function() {
		$(this).css("cursor","pointer");
	},
	function() {
		$(this).css("cursor","default");
	});
});

