// JavaScript Document

//nav
$(function() {
	var num = 1;
	$('.teco_nav')
	//マウスオーバー画像を配置
	.each(function(){
		$(this).css('background', 'url(images/nav_0'+num+'.gif) no-repeat 0px -65px')
		num++;
	})
	.find('img').hover(
		function(){  
			$(this).stop().animate({'opacity' : '0'}, 300);  
		},
		function(){
			$(this).stop().animate({'opacity' : '1'}, 300);
		}
	); 
});

//nav_u
$(function() {
	var num = 1;
	$('.teco_nav_u')
	//マウスオーバー画像を配置
	.each(function(){
		$(this).css('background', 'url(../images/nav_0'+num+'.gif) no-repeat 0px -65px')
		num++;
	})
	.find('img').hover(
		function(){  
			$(this).stop().animate({'opacity' : '0'}, 300);  
		},
		function(){
			$(this).stop().animate({'opacity' : '1'}, 300);
		}
	); 
});


