//ooshiro js

//top imge fadein
$(document).ready(function () {
    var $boxes = $('.idxmenu-main').hide(),
      div = 0;
      
    $(document).ready(function () {
     $($boxes).animate({ opacity: 'toggle', height: 'toggle' },'slow');
    });
});

//mainnabi imge fadein
/*
$(document).ready(function () {
    var $boxes = $('.menu-main').hide(),
      div = 0;
      
    $(document).ready(function () {
     $($boxes[div++] || []).fadeIn('slow', arguments.callee);
    });
});
*/
//scroll up
$(function () {
	$('#pagelinkup').click(function () {
		$(this).blur();
		$('html,body').animate({ scrollTop: 0 }, 'slow');
		return false;
	});
});
