// JavaScript Document

jQuery(function($){
	$("#nav_global img").hover(function(){
		$(this).css("opacity", "0.2");
		$(this).css("filter", "alpha(opacity=0.2)");
		$(this).fadeTo("slow", 1.0);
		});
	//$("#nav_option img").hover(function(){
	//	$(this).css("opacity", "0.2");
	//	$(this).css("filter", "alpha(opacity=0.2)");
	//	$(this).fadeTo("slow", 1.0);
	//	});
});
