
// ドロップダウンリスト
$(function(){  
	//$('ul#newnav').superfish();  
	$('ul#newnav').superfish({  
	delay: 1000,        // one second delay on mouseout   
	animation: { opacity: 'show', height: 'show' },   // fade-in and slide-down animation   
	speed: 'slow',      // slow animation speed   
	autoArrows: true,   // enable generation of arrow mark-up   
	dropShadows: true   // enable drop shadows   
	});               
});  

// ナンバリング
$(document).ready(function(){

	$("#step dt").each(function (i) {
		i = i+1;
		$(this).addClass("item"+i);
   });
	$("#step dd").each(function (i) {
		i = i+1;
		$(this).addClass("item"+i);
   });
	$("#step02 dt").each(function (i) {
		i = i+1;
		$(this).addClass("item"+i);
   });
	$("#step02 dd").each(function (i) {
		i = i+1;
		$(this).addClass("item"+i);
   });


});

$('#hoge a').click(function(){
	$.scrollTo( $('#top'), {speed:1000,axis:'y', queue:true} );
	return false;
});

