$(document).ready(function() {
	$(".hover").hover(function() {
		$(this).children('.img1').hide();
		$(this).children('.img2').show();
	}, function() {
		$(this).children('.img2').hide();
		$(this).children('.img1').show();
	});
	$(document).pngFix();
});