$(function(){
    $("#congestionAllday").hide();
	$('#boxBasicInfoRosen a').toggle(
        function(){
            $("#congestionAllday").slideDown('normal');
            $(this).text("詳細▲");
        },
        function(){
            $("#congestionAllday").slideUp('normal');
            $(this).text("詳細▼");
        }
    );
});
