$(document).ready(function(){
	$("#aLinkTest, #bLinkTest, #cLinkTest, #dLinkTest, #eLinkTest, #fLinkTest").css({opacity:0}); // This sets the opacity of the thumbs to fade down to 30% when the page loads
	$("#a").hover(function(){
		$('#aLinkTest').fadeTo("fast", 0.9); // This should set the opacity to 100% on hover
		},function(){
   		$('#aLinkTest').fadeTo("fast", 0); // This should set the opacity back to 30% on mouseout
   	});
	$("#b").hover(function(){
		$('#bLinkTest').fadeTo("fast", 0.9); // This should set the opacity to 100% on hover
		},function(){
   		$('#bLinkTest').fadeTo("fast", 0); // This should set the opacity back to 30% on mouseout
   	});
	$("#c").hover(function(){
		$('#cLinkTest').fadeTo("fast", 0.9); // This should set the opacity to 100% on hover
		},function(){
   		$('#cLinkTest').fadeTo("fast", 0); // This should set the opacity back to 30% on mouseout
   	});
	$("#d").hover(function(){
		$('#dLinkTest').fadeTo("fast", 0.9); // This should set the opacity to 100% on hover
		},function(){
   		$('#dLinkTest').fadeTo("fast", 0); // This should set the opacity back to 30% on mouseout
   	});
	$("#e").hover(function(){
		$('#eLinkTest').fadeTo("fast", 0.9); // This should set the opacity to 100% on hover
		},function(){
   		$('#eLinkTest').fadeTo("fast", 0); // This should set the opacity back to 30% on mouseout
   	});
	$("#f").hover(function(){
		$('#fLinkTest').fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
		},function(){
   		$('#fLinkTest').fadeTo("fast", 0); // This should set the opacity back to 30% on mouseout
   	});
});
