$(document).ready(function(){	
	$("#menu li.unselected a img").fadeTo(10, 0); // This sets the opacity of the buttons (image) to fade down to 0% when the page loads
	
	$("#menu li.unselected a img").hover(function(){
		$(this).fadeTo("slow", 1.0); // Set opacity to 100% on hover
	},function(){
		$(this).fadeTo("slow", 0); // Set opacity back to 0% on mouseout
	});
});