$(document).ready(function() {

	$('.new_product').mouseover(function() {
		$(this).find('.new').hide();
	})
	
	$('.new_product').mouseout(function() {
		$(this).find('.new').show();
	})
	
});