$(function () {
			
	/* スムーズスクロール（ページトップへ戻る）
    $('#pagetop #pagetop-inner p a').click(function () {
		$(this).blur();
	
		$('html,body').animate({ scrollTop: 0 }, 'slow');
	
		return false;
    });*/



	/*ウィンク効果*/
	$("#header #header-inner #header-inner-left a img").hover(function(){
		$(this).css("opacity", "0.3");
		$(this).css("filter", "alpha(opacity=20)");
		$(this).fadeTo("slow", 1.0);
	});
	
	

});







