$(function(){
	//img mouseover
	$("a img:not(.global_menu a img)")
	.hover(
		function(){ $(this).animate({opacity: 0.5},200); },
		function(){ $(this).animate({opacity: 1.0},400); }
	);
	$(".global_menu a img:not(.current)")
	.hover(
		function(){ $(this).animate({opacity: 0},200); },
		function(){ $(this).animate({opacity: 1.0},400); }
	);
});


