/*
 * Funciones generales de la web
 */
$(document).ready(function(){
	

	//mostrar ocultar contenido detalles producto
	$(".spec li").click(function() {
	    if($(this).attr('class') != 'sel') {
	    	$(this).parent().children('li').removeClass('sel');
	    	$(this).addClass('sel');
	    	$(this).attr('id');
	    if($(this).attr('id') == 'l0') {
	        $('.det .ingredientes').hide();
	        $('.det .dondecomprar').hide();
	        $('.det .detalles').fadeIn(1000);
	    };
	    if($(this).attr('id') == 'l1') {
	        $('.det .detalles').hide();
	        $('.det .dondecomprar').hide();
	        $('.det .ingredientes').fadeIn(1000);
	    };
	    if($(this).attr('id') == 'l2') {
	        $('.det .ingredientes').hide();
	        $('.det .detalles').hide();
	        $('.det .dondecomprar').fadeIn(1000);
	    };
	    }
	})

	//boton imprimir
	$('.print').click(function() {
	    window.print();
	    return false;
	});

	//F.A.Q.
	$('#faqul li a').click(function(){
		$(this).next('p').toggle(350);
	});
	//desplegable productos
	$('.contrightcat ul li').click(function(){
		var status = $(this).attr('class');
		
		if(status == 'open') {
			$(this).removeClass('open');			
			$(this).children('p').hide(350);
		} else {
			$('.contrightcat ul').children('li').children('p').hide(350);
			$('.contrightcat ul').children('li').removeClass('open');
			$(this).addClass('open');
			$(this).children('p').show(350);
		}
	});
});

