$(document).ready(function(){	
	$("#menu a.unselected img").fadeTo(10, 0);
	
	$("#menu a.unselected img").hover(function(){
		$(this).stop();
		$(this).fadeTo(500, 1.0);
	},function(){
		$(this).stop();
		$(this).fadeTo(2000, 0);
	});
});