// JavaScript Document
var addthis_config = {
    ui_click: true /* normally would disable mouseover behavior */
}
$(document).ready(function(){
	$("#gallery img").fadeTo("normal", 0.8); // This sets the opacity of the thumbs to fade down to 60% when the page loads
	$("#gallery img").hover(function(){
		$(this).fadeTo("normal", 1.0); // This should set the opacity to 100% on hover
	},function(){
   		$(this).fadeTo("normal", 0.8); // This should set the opacity back to 60% on mouseout
	});
});
$(document).ready(function(){
	$("#featured-content img").fadeTo("normal", 0.8); // This sets the opacity of the thumbs to fade down to 60% when the page loads
	$("#featured-content img").hover(function(){
		$(this).fadeTo("normal", 1.0); // This should set the opacity to 100% on hover
	},function(){
   		$(this).fadeTo("normal", 0.8); // This should set the opacity back to 60% on mouseout
	});
});
$(document).ready(function(){
	$("#about-subs img").fadeTo("normal", 0.6); // This sets the opacity of the thumbs to fade down to 60% when the page loads
	$("#about-subs img").hover(function(){
		$(this).fadeTo("normal", 1.0); // This should set the opacity to 100% on hover
	},function(){
   		$(this).fadeTo("normal", 0.6); // This should set the opacity back to 60% on mouseout
	});
});
$(document).ready(function(){
	$("#downloads img").fadeTo("normal", 0.6); // This sets the opacity of the thumbs to fade down to 60% when the page loads
	$("#downloads img").hover(function(){
		$(this).fadeTo("normal", 1.0); // This should set the opacity to 100% on hover
	},function(){
   		$(this).fadeTo("normal", 0.6); // This should set the opacity back to 60% on mouseout
	});
});
