$(function() {
	$('.home-select').mouseenter(function(){
		$(this).find('.select-img').fadeOut(100);
	});
	
	$('.home-select').mouseleave(function(){
		$(this).find('.select-img').fadeIn(500);
	});
});
