$(function(){
	//ウィンク効果
	var ua = navigator.userAgent;

	
	$('#cont_right a img').hover(function(){
		$(this).css({
			opacity: '0.2',
			filter: 'alpha(opacity=10)'
		});
		$(this).fadeTo('slow',1.0);
	});

	
	$('#cont_right a img').hover(function(){
		$(this).css({
			opacity: '1',
			filter: 'alpha(opacity=100)'
		});
	});
	
});


