jQuery(document).ready(function($){
	
	$("img.nav_img").hover(function() {  
	  $(this).stop().animate({ opacity: "0"}, 500);  
	  },function() {  
	  $(this).stop().animate({ opacity: "1"}, 500);  
	});  
	
	$("img.logo").hover(function() {  
	  $(this).stop().animate({ opacity: "0"}, 500);  
	  },function() {  
	  $(this).stop().animate({ opacity: "1"}, 500);  
	});  


});
