$(function(){
	$("#navdivdiv .navdiv").each(function(){
		$(this).mouseover(function(){
			$(this).find('img').attr('src', '/i/nav/' + $(this).find('img').attr('name') + '_a.gif');
			/*$(this).css('backgroundColor', '#91002C');*/
		});
		$(this).mouseout(function(){
			$(this).find('img').attr('src', '/i/nav/' + $(this).find('img').attr('name') + '.gif');
			/*$(this).css('backgroundColor', '#fff');*/
		});
	});
});

$(function(){
	$(".vkldiv").each(function(){
		$(this).mouseover(function(){
			$(this).find('img').attr('src', '/i/faq/' + $(this).find('img').attr('name') + '.gif');
		});
		if($(this).find('img').attr('src') != '/i/faq/' + $(this).find('img').attr('name') + '.gif')
		{
  		$(this).mouseout(function(){
        $(this).find('img').attr('src', '/i/faq/' + $(this).find('img').attr('name') + '_a.gif');
		  });
		}
	});
});

/*useful*/
$(function(){
	$(".but").each(function(){
		$(this).mouseover(function(){
			$(this).find('img').attr('src', '/i/useful/' + $(this).find('img').attr('name') + '_a.gif');
		});
		$(this).mouseout(function(){
			$(this).find('img').attr('src', '/i/useful/' + $(this).find('img').attr('name') + '.gif');
		});
	});
});

/*tradition*/
$(function(){
	$(".but01").each(function(){
		$(this).mouseover(function(){
			$(this).find('img').attr('src', '/i/tradition/' + $(this).find('img').attr('name') + '_a.gif');
		});
		$(this).mouseout(function(){
			$(this).find('img').attr('src', '/i/tradition/' + $(this).find('img').attr('name') + '.gif');
		});
	});
});

/*adoption02*/
$(function(){
	$(".clr_eye, .clr_hair").each(function(){
		$(this).mouseover(function(){
			$(this).find('img').attr('src', '/i/adoption/' + $(this).find('img').attr('name') + '_a.gif');
		});
		if($(this).find('img').attr('src') != '/i/adoption/' + $(this).find('img').attr('name') + '_a.gif')
		{
  		$(this).mouseout(function(){
	 		  $(this).find('img').attr('src', '/i/adoption/' + $(this).find('img').attr('name') + '.gif');
		  });
		}
	});
});

/*tradition02*/
$(function(){
	$(".month").each(function(){
		$(this).mouseover(function(){
			$(this).find('img').attr('src', '/i/tradition/calend/' + $(this).find('img').attr('name') + '_a.gif');
		});
		if($(this).find('img').attr('src') != '/i/tradition/calend/' + $(this).find('img').attr('name') + '_a.gif')
		{
		  $(this).mouseout(function(){
			 $(this).find('img').attr('src', '/i/tradition/calend/' + $(this).find('img').attr('name') + '.gif');
		  });
		}
	});
});