function mostrar_productos(id)
{
	$('#subgrupo' + id).show();
}

function menu_izquierdo()
{
	$('div.grupo').hover(
		function(){
			$(this).removeClass('grupo');
			$(this).addClass('grupo_over');
		},
		function(){
			$(this).removeClass('grupo_over');
			$(this).addClass('grupo');
		}
	);
	$('div.producto').hover(
		function(){
			$(this).removeClass('producto');
			$(this).addClass('producto_over');
		},
		function(){
			$(this).removeClass('producto_over');
			$(this).addClass('producto');
		}
	);
	$('a.link_grupo').click(function() {
		if ($("#sub" + this.id).css("display")=='none')
		{
			$("div.oculta:visible").slideUp('fast');
		}
		$("#sub" + this.id).slideToggle('fast');
	});
}

function menu_gallery(id)
{
	$('td.td_gallery').hover(
		function(){
			if ($(this).attr('id') != id) $(this).css({background: '#1F1F20'});
		},
		function(){
			if ($(this).attr('id') != id) $(this).css({background: '#000'});
		}
	);
}

function hover_gallery()
{
	$('#ediciones_limitadas a').hover(
		function(){
			var $hijos = $(this).children();
			$hijos.toggle();
		},
		function(){
			var $hijos = $(this).children();
			$hijos.toggle();
		}
	);
}