﻿//------------------------------------------------------------
//jQueryを実行
//------------------------------------------------------------
$(function() {
	//------------------------------------------------------------
	//トップ画像にリンクを設定、絶対パスを設定する
	//------------------------------------------------------------
	//手動で更新
	topJumpLink="http://sonoe.jugem.jp/?eid=21";	//「すてきな写真」
	
	//自動実行
	$("img#topImgLink").wrapAll("<a href='"+topJumpLink+"#contents_clm'></a>")
	.attr({
		"title":"クリックで詳細ページへ",
		"alt":"クリックで詳細ページへ"
	})
　　.hover(
		function(){
			/*
			$(this)	.animate({ 
				opacity: 0.8
			}, 600 );
			*/
			$(this).css({
				opacity: 0.8
			});

		},
		function(){
			$(this).css({
				opacity: 1.0
			});
		}
	); 


		
		
	//------------------------------------------------------------		
});
	





