.change-image-container{
	position: relative;
}

.change-image-container img:first-child{
	position: absolute;
	top: 0;
	left: 0;
	opacity: 1;
}

.change-image-container img:last-child{
	opacity: 0;
}

.change-image-container:hover img:first-child{
	opacity: 0;
}

.change-image-container:hover img:last-child{
	opacity: 1;
}