$(document).ready(function(){
						   $("#topnav1").fadeIn(6000);
						    $("#topnav2").fadeIn(6000);
							 $("#topnav3").fadeIn(6000);
							

	$("#topnav1").hover(function(){
												 
		
	$(this).animate({"opacity": "0.4"}, "slow");
$(this).animate({"opacity": "1.0"}, "slow");

				   
		});
	
	$("#topnav2").hover(function(){
												 
		
	$(this).animate({"opacity": "0.4"}, "slow");
$(this).animate({"opacity": "1.0"}, "slow");

				   
		});
	
	$("#topnav3").hover(function(){
												 
		
	$(this).animate({"opacity": "0.4"}, "slow");
$(this).animate({"opacity": "1.0"}, "slow");

				   
		});
	
	
	
	
	
		
	});



