$(function(){
	//ウィンク効果
/*	$('a img:not([class="no"])').hover(function(){
		$(this).css({
			opacity: '0.2',
			filter: 'alpha(opacity=20)'
		});
		$(this).fadeTo('slow',1.0);
	});

	
	$('a img[class="no"]').hover(function(){
		$(this).css({
			opacity: '1',
			filter: 'alpha(opacity=100)'
		});
	});
*/
	//evenのdtとddのバックグランド色変え
	$('.voice').each(function(){
		$('dt:even',this).css({backgroundColor:'#F0EBD9'});
		$('dd:even',this).css({backgroundColor:'#F0EBD9'});
	});
	
});
