$(function() {
	$(".thumbContainer").hover(
		function () {
			$(".show", $(this)).hide();
			$(".hide", $(this)).show();
		},
		function () {
			$(".show", $(this)).show();
			$(".hide", $(this)).hide();
			$(".show.active", $(this)).hide();
			$(".hide.active", $(this)).show();
			
		}
	);
});

