/*$(function(){
	 glow効果 
	$("img.glow,.glow").hover(function(){
		$(this).css("opacity", "0.2");
		$(this).css("filter", "alpha(opacity=20)");
		$(this).fadeTo("fast", 1.0);
	});
	
});*/



$(function(){
	$("img.glow,.glow").hover(
	function(){
		$(this).fadeTo("fast", 0.7);
	},function(){
	
			$(this).fadeTo("fast", 1);
	}
	);
});

/*$(function(){
$(".glow").opOver();
});*/


//プルダウンメニュー
$(function(){
	$(".pullprof").hover(
		function(){
			$("#pullprofMenu").show()
		},
		function(){
			$("#pullprofMenu").hide()
		}
	);
	$("#pullprofMenu").hover(
		function(){
			$("#pullprofMenu").show()
		},
		function(){
			$("#pullprofMenu").hide()
		}
	);
});

