
	$(document).ready(function() {
		$('.oferta_normala, .oferta_speciala, .oferta_exclusivitate, .oferta_pret_redus, .poza_detalii_mare, .poza_detalii_mica').append('<span class="hover"></span>').each(function () {
	  		var $span = $('> span.hover', this).css('opacity', 0);
	  		$(this).hover(function () {
	    		$span.stop().fadeTo(300, 1);
	 		}, function () {
	   	$span.stop().fadeTo(300, 0);
	  		});
		});
	});

