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

$(document).ready(function(){
						   
	   $(".fade-hover-this").fadeTo("fast", 1.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
	   $(".fade-hover-this").hover(function(){
	   $(this).fadeTo("fast", 0.7); // This should set the opacity to 100% on hover
	   },function(){
	   $(this).fadeTo("fast", 1.0); // This should set the opacity back to 30% on mouseout
			});
	   });

$(document).ready(function(){
						   
	   $("#white-feature .column-image-container").fadeTo("fast", 1.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
	   $("#white-feature .column-image-container").hover(function(){
	   $(this).fadeTo("fast", 0.7); // This should set the opacity to 100% on hover
	   },function(){
	   $(this).fadeTo("fast", 1.0); // This should set the opacity back to 30% on mouseout
			});
	   });

$(document).ready(function(){
						   
	   $("img.img-right-hover").fadeTo("fast", 1.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
	   $("img.img-right-hover").hover(function(){
	   $(this).fadeTo("fast", 0.7); // This should set the opacity to 100% on hover
	   },function(){
	   $(this).fadeTo("fast", 1.0); // This should set the opacity back to 30% on mouseout
			});
	   });

$(document).ready(function(){
						   
	   $(".send").fadeTo("fast", 1.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
	   $(".send").hover(function(){
	   $(this).fadeTo("fast", 0.7); // This should set the opacity to 100% on hover
	   },function(){
	   $(this).fadeTo("fast", 1.0); // This should set the opacity back to 30% on mouseout
			});
	   });

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

$(document).ready(function(){
						   
	   $(".team-image-container a").fadeTo("fast", 0.7); // This sets the opacity of the thumbs to fade down to 30% when the page loads
	   $(".team-image-container a").hover(function(){
	   $(this).fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
	   },function(){
	   $(this).fadeTo("fast", 0.7); // This should set the opacity back to 30% on mouseout
			});
	   });

$(document).ready(function(){
						   
	   $(".contact-map").fadeTo("fast", 1.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
	   $(".contact-map").hover(function(){
	   $(this).fadeTo("fast", 0.5); // This should set the opacity to 100% on hover
	   },function(){
	   $(this).fadeTo("fast", 1.0); // This should set the opacity back to 30% on mouseout
			});
	   });

$(document).ready(function(){
						   
	   $("a.button-width-auto").fadeTo("fast", 1.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
	   $("a.button-width-auto").hover(function(){
	   $(this).fadeTo("fast", 0.7); // This should set the opacity to 100% on hover
	   },function(){
	   $(this).fadeTo("fast", 1.0); // This should set the opacity back to 30% on mouseout
			});
	   });