$(document).ready( function() {
	$('.z2').one('mouseover', function(){
		$(this).hide();
		$('.z1').css('display', 'block');
	});

});


