$(document).ready(function(){
	$("a").fadeTo("fast", 0.9); // when the page loads

	$("a").hover(function(){
		$(this).fadeTo("fast", 1.0); // on hover
	},function(){
   		$(this).fadeTo("fast", 0.9); // on mouseout
	});
});


