$(document).ready(function(){
	
	$(".thumb-container").hover(function(){
		$(this).children("div.thumb-bg").fadeTo("fast", 0.15); // This should set the opacity to 0% on hover
		$(this).children("div.thumb-type").fadeTo("fast", 1.0);

		},function(){
		$(this).children("div.thumb-bg").fadeTo("fast", 1.0); // This should set the opacity back to 100% on mouseout
		$(this).children("div.thumb-type").fadeTo("fast", 0);
	});
});