// JavaScript Document

jQuery(function($){
	//$('#header').pngFix('');
	
	$("#nav_global a").hover(function(){
		$(this).css("opacity", "0.2");
		$(this).css("filter", "alpha(opacity=0.2)");
		$(this).fadeTo("slow", 1.0);
		});
	$("#nav_global_f a").hover(function(){
		$(this).css("opacity", "0.2");
		$(this).css("filter", "alpha(opacity=0.2)");
		$(this).fadeTo("slow", 1.0);
		});
	
});
