$(document).ready(function(){
	$("#homeAssemblies a").addClass("latest_img");
	$("#homeWelding a").addClass("latest_img");
	$("#homeFabricating a").addClass("latest_img");
	$("#homeMachining a").addClass("latest_img");
	$("#homeCutting a").addClass("latest_img");
	$("#homePunching a").addClass("latest_img");
	$("#homeGuards a").addClass("latest_img");
	$("#homeOther a").addClass("latest_img");
	
	$("#homeSupplyChain a").addClass("latest_img");
	$("#homeMaterials a").addClass("latest_img");
	$("#homeExpediting a").addClass("latest_img");
	$("#homeQuality a").addClass("latest_img");
	$("#homeInventory a").addClass("latest_img");
	
	$(".latest_img").stop().fadeTo(0, 0.0); // This sets the opacity of the thumbs to fade down to 0% when the page loads
	$(".latest_img").hover(function(){
	$(this).stop().fadeTo(200, 1.0); // This should set the opacity to 100% on hover
	},function(){
	$(this).stop().fadeTo(200, 0.0); // This should set the opacity back to 30% on mouseout
	});
});
