$(document).ready(function(){
						   $("#navigation_content ul li a").stop().fadeTo("fast", 0.5); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#navigation_content ul li a").mouseover(function(){
						   $(this).stop().fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
						   $("#navigation_content ul li a").mouseout(function(){
						   $(this).stop().fadeTo("normal", 0.5); // This should set the opacity back to 30% on mouseout
						   });
						   });
});

$(document).ready(function(){
						   $("#sub_nav a").stop().fadeTo("fast", 0.7); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#sub_nav a").mouseover(function(){
						   $(this).stop().fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
						   $("#sub_nav a").mouseout(function(){
						   $(this).stop().fadeTo("normal", 0.7); // This should set the opacity back to 30% on mouseout
						   });
						   });
});
