$(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)'
		});
	});
	
	//lightbox

//$("#pnf a").append('<img src="http://www.shiofukikan.com/img/toPdf-btn.jpg">');
$("#pnf a").html('<img src="/img/index_newbana.jpg">');
$("#pnf a").attr("target","_blank");
$("#pnf a img").attr("width","610");
$("#pnf a img").attr("class","not");

	$('#pnf a img').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)'
		});
	});




});



