//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;
	});
});


//ギャラリーメインイメージ
$(document).ready(function(){	
	var totWidth=0;
	var positions = new Array();
	
	$('#slides .slide').each(function(i){
		
		positions[i]= totWidth;
		totWidth += $(this).width();
				
		if(!$(this).width())
		{
			alert("Please, fill in width & height for all your images!");
			return false;
		}
		
	});
	
	$('#slides').width(totWidth);

	$('#galleryp_menu ul li a').click(function(e){

			$('li.menuItem').removeClass('act').addClass('inact');
			$(this).parent().addClass('act');
			
			var pos = $(this).parent().prevAll('.menuItem').length;
			
			$('#slides').stop().animate({marginLeft:-positions[pos]+'px'},450);
			
			e.preventDefault();
	});
	
	$('#galleryp_menu ul li.menuItem:first').addClass('act').siblings().addClass('inact');	
});

//ギャラリーナビボタンスクロール
/*$(document).ready(function () {
	var $nextnabi = $('#group02').hide();

	$('.menubt_n').click(function () {
	$('#group01').hide();
    $($nextnabi).fadeIn('slow');
	return false;
    });	
});
*/



