//Hover Light
//
//方法：<img>タグ内にclass="hoverLight"を挿入する
//効果：不透明度を利用したアニメーション付きのロールオーバーを設置できる。

$(function() {
	$('img.hoverLight').hover(function(){
		$(this).animate({'opacity': '0.7'}, 200);
	}, function(){
		$(this).animate({'opacity': '1'}, 200);
	}).click(function(){
		$(this).animate({'opacity': '1'}, 200);
	});
});

