
// Fade-in for all links

$(document).ready(function(){
						   
	   $("a").fadeTo("fast", 1.0); // This sets the opacity of the thumbs to fade down to 100% when the page loads
	   $("a").hover(function(){
	   $(this).fadeTo("fast", 0.5); // This should set the opacity to 50% on hover
	   },function(){
	   $(this).fadeTo("fast", 1.0); // This should set the opacity back to 100% on mouseout
			});
	   });


// Fade-in for navigation

$(document).ready(function(){
						   
	   $("ul#navigation li").fadeTo("fast", 1.0); // This sets the opacity of the thumbs to fade down to 100% when the page loads
	   $("ul#navigation li").hover(function(){
	   $(this).fadeTo("fast", 0.8); // This should set the opacity to 80% on hover
	   },function(){
	   $(this).fadeTo("fast", 1.0); // This should set the opacity back to 100% on mouseout
			});
	   });


// Fade-in for partners

$(document).ready(function(){
						   
	   $("#partners-links a").fadeTo("fast", 0.6); // This sets the opacity of the thumbs to fade down to 60% when the page loads
	   $("#partners-links a").hover(function(){
	   $(this).fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
	   },function(){
	   $(this).fadeTo("fast", 0.6); // This should set the opacity back to 60% on mouseout
			});
	   });


