$('#showEmailImage').hover(
	function() { 
		$("#emailImage").show();
	},
	function() { 
		$("#emailImage").hide();
	}
);

