/**
 * @author pablo
 */
$(function()
{
   
   $('.tbrTabs .tbrTabCnt').hide();      
   $('.tbrTabs .tbrTab a.tbrTabCmd').click(function()
   {
      $($(this).attr('href')).show().siblings().hide();
      $(this).parent('.tbrTab').addClass('on').siblings().removeClass('on');
      return false;
   });
   $('.tbrTabs .tbrTab.on a.tbrTabCmd').click();
   
   
   $('#frmCto').ajaxForm(
   {
      url: '/landing/share/ajax/contacto.php',
      type: 'POST',
      dataType: 'JSON',
      data: {'ac' : 'send'},
      beforeSubmit: function()
      {
         if (!$('#txtNm').val())
         {
            alert('Te faltó escribir tu nombre.');
            return false;
         }
         if (!$('#txtEml').val())
         {
            alert('Te faltó escribir tu email o teléfono.');
            return false;
         }
         if (!$('#txtLoc').val())
         {
            alert('Te faltó escribir tu ciudad o localidad.');
            return false;
         }
         if (!$('#textMsg').val())
         {
            alert('Te faltó escribir el mensaje.');
            return false;
         }
         $('#frmCto').hide();
         $('#tabCnt-Cto').html('<h3 id="msgCto">Enviando... aguarda</h3>');
      },
      success: function()
      {
         $('#msgCto').html('<h3 id="msgCto">Mensaje enviado... gracias por escribirnos!</h3>');
      }
   });
   
   
   
});
