// 画像ロールオーバー

$(function() {
$("h1 a img,nav a img,#portfolio a img,#portContents a img,#blog a img,.bnarea a img,#flickr a img").hover(
	function(){
		$(this).animate(
		{ opacity: 0.6 }, 200);},
	function(){
		$(this).animate(
		{ opacity: 1.0 }, 400);}
);
});
