<!--
//  -------------------------------------------------------- ::: - ::: - ::: ---
//  -------------------------------------------------------- ::: - ::: - ::: ---
    $(document).ready(function() {

  //  PNGFix.
      $(document).pngFix();

  //  Fondo rotando.
      $("#fondo").cycle({
        fx:             "fade",
        speed:          3000,
        timeout:        45000
      });

  //  Mensaje inicial.
      $("#inicio").click( function() {
        var abierto   = ( parseInt( $("#inicio").css("left"), 20 ) >= 0 ) ? true : false;
        $("#inicio").animate({
          left:         ( abierto ) ? -450 : 0,
          css:          ( abierto ) ? $("#inicio").css("background-image","url(/img/marcador-inicio-der.gif)") : $("#inicio").css("background-image","url(/img/marcador-inicio-izq.gif)")
        });
      });
      $("ul.subsecciones li a.muebles").mouseenter( function() {
        var abierto   = ( parseInt( $("#inicio").css("left"), 20 ) >= 0 ) ? true : false;
        if ( abierto ) {
          $("#inicio").animate({
            left:     -450,
            css:      $("#inicio").css("background-image","url(/img/marcador-inicio-der.gif)")
          });
        }
      });

  //  Links que no deben direccionar directamente.
      var links       = { 0: "proyectos", 1: "catalogo", 2: "muebles" };
      $.each( links, function( indice, clase ) {
        $("."+clase).click( function() {
          return false;
        });
      });

  //  Imágenes rotando.
      $("#desarrollo .imagenes").cycle({
        fx:             "fade",
        next:           "#desarrollo .controles .sig",
        prev:           "#desarrollo .controles .ant"
      });
      $("#desarrollo .controles #btnPausar").click( function() {
        if ( $(this).hasClass("alt") ) {
          $("#desarrollo .imagenes").cycle("pause");
          $(this).removeClass("alt");
          $(this).addClass("cnt");
        }
        else {
          $("#desarrollo .imagenes").cycle("resume");
          $(this).removeClass("cnt");
          $(this).addClass("alt");
        }
        return false;
      });

  //  Productos.
      $("#detalle ul").cycle({
        timeout:        0,
        fx:             "fade",
        next:           "#detalle .controles .sig",
        prev:           "#detalle .controles .ant",
        startingSlide:  indice-1
      });

  //  Contacto.
      var campos        = { "nombre": "Nombre", "email": "Email", "consulta": "Consulta" };
      $("#contacto").submit( function() {
        var error       = false;
        $("#log").removeClass( "error" ).html( "&nbsp;" );
        $.each( campos, function( clave, valor ) {
          if ( $("#"+clave).val() == "" ) {
            $("#"+clave).focus();
            $("#log").addClass( "error" ).html( "Por favor, complete los campos marcados" );
            error       = true;
            return false;
          }
        });
        if ( !error ) {
          $("#enviar").hide();
          $("#log").html( "Aguarde unos instantes..." );
          $.ajax({
            type:       "POST",
            url:        "/envio.php",
            cache:	false,
            data:       "nombre=" + $("#nombre").val() + "&telefono=" + $("#telefono").val() + "&email=" + $("#email").val() + "&consulta=" + $("#consulta").val(),
            success: function( res ) {
              if ( res.substring(0,5) == "Error" )
                $("#log").addClass( "error" );
              $("#log").html( res );
            }
          }); 
        }
        return false;
      });

  //  Copyright.
      $("#copyright div").hide();
      $("#mostrarCopyright").click( function() {
        $("#copyright div").slideToggle();
        return false;
      });

  //  Facebook.
      $("#facebook").click( function() {
        window.open( this.href );
        return false;
      });
    });

