$(document).ready(function() {
  $(".thumb").hover(function() {
    $(this).addClass("thumb_hover");
  },function(){
    $(this).removeClass("thumb_hover");
  });

	$(".thumb img").hover(function() {
		$(this).addClass("thumb_hover img");
	}, function(){
		$(this).removeClass("thumb_hover img");
	});
	
	$(".gallery img").hover(function() {
		$(this).addClass(".gallery_pic_hover img");
	}, function() {
		$(this).removeClass(".gallery_pic_hover img");
	});
	
	$(".galleryEnd img").hover(function() {
		$(this).addClass(".galleryEnd_pic_hover img");
	}, function() {
		$(this).removeClass(".galleryEnd_pic_hover img");
	});
	
	$('.gallery').mouseenter(function() {
		$(this).children('span').fadeIn(200);
	}).mouseleave(function() {
		$(this).children('span').fadeOut(200);
	});
	
	$('.galleryEnd').mouseenter(function() {
		$(this).children('span').fadeIn(200);
	}).mouseleave(function() {
		$(this).children('span').fadeOut(200);
	});
});
