$(document).ready(function() {
	$('.expandir-menu').each(function() {								  
		$(this).toggle(
			function() {
				$(this).html('Ocultar &raquo;');
				var menu = $(this).parent().parent().find('.producto-info');
				menu.css({
					top: parseInt($(this).offset().top -57)+'px',
					left: parseInt($(this).offset().left + 70)+'px'
				});
				menu.show();
			},
			function() {
				$(this).html('Ver todos &raquo;');
				$(this).parent().parent().find('.producto-info').hide();
			}
		);		
	});
});
