$(document).ready(function() {
		$(".thumb-container").hover(function(){
		$(this).children("div.thumb-bg").fadeTo("fast", 0);
		$(this).children("div.thumb-type").fadeTo("fast", 1);

		},function(){
		$(this).children("div.thumb-bg").fadeTo("fast", 1);
		$(this).children("div.thumb-type").fadeTo("fast", 0);
		
		});
});
